This commit is contained in:
iPromKnight
2024-03-10 13:48:27 +00:00
parent c8a1ebd8ae
commit 6c03f79933
20 changed files with 252468 additions and 52 deletions

View File

@@ -2,7 +2,6 @@ namespace Producer.Features.ParseTorrentTitle;
public class ParsedTv : BaseParsed
{
public string? ReleaseTitle { get; set; }
public string? SeriesTitle { get; set; }
public List<int> Seasons { get; set; } = [];
public List<int> EpisodeNumbers { get; set; } = [];
@@ -13,4 +12,4 @@ public class ParsedTv : BaseParsed
public bool IsSeasonExtra { get; set; }
public bool IsSpecial { get; set; }
public int SeasonPart { get; set; }
}
}