17 lines
341 B
C#
17 lines
341 B
C#
namespace Shared.Models.Online.Collaps
|
|
{
|
|
public struct Episode
|
|
{
|
|
public string episode { get; set; }
|
|
|
|
public string hls { get; set; }
|
|
|
|
public string dasha { get; set; }
|
|
public string dash { get; set; }
|
|
|
|
public Cc[] cc { get; set; }
|
|
|
|
public Audio audio { get; set; }
|
|
}
|
|
}
|