mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
16 lines
535 B
C#
16 lines
535 B
C#
namespace Producer.Features.ParseTorrentTitle;
|
|
|
|
public class ParsedTv : BaseParsed
|
|
{
|
|
public string? SeriesTitle { get; set; }
|
|
public List<int> Seasons { get; set; } = [];
|
|
public List<int> EpisodeNumbers { get; set; } = [];
|
|
public DateTime? AirDate { get; set; }
|
|
public bool FullSeason { get; set; }
|
|
public bool IsPartialSeason { get; set; }
|
|
public bool IsMultiSeason { get; set; }
|
|
public bool IsSeasonExtra { get; set; }
|
|
public bool IsSpecial { get; set; }
|
|
public int SeasonPart { get; set; }
|
|
}
|