lampac-talks f843f04fd4 chore: initial commit 154.3
Signed-off-by: lampac-talks <lampac-talks@users.noreply.github.com>
2026-01-30 16:23:09 +03:00

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; }
}
}