15 lines
280 B
C#
15 lines
280 B
C#
namespace Shared.Models.Online.FanCDN
|
|
{
|
|
public struct Episode
|
|
{
|
|
public string title { get; set; }
|
|
|
|
public string file { get; set; }
|
|
|
|
public string subtitles { get; set; }
|
|
|
|
|
|
public Dictionary<string, Episode> folder { get; set; }
|
|
}
|
|
}
|