Files
torrentio/src/producer/Features/ParseTorrentTitle/ParsedTv.cs
iPromKnight 6c03f79933 Complete
2024-03-10 13:48:27 +00:00

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