EpisodePathParserResult.cs 481 B

12345678910111213141516
  1. namespace Emby.Naming.TV
  2. {
  3. public class EpisodePathParserResult
  4. {
  5. public int? SeasonNumber { get; set; }
  6. public int? EpisodeNumber { get; set; }
  7. public int? EndingEpsiodeNumber { get; set; }
  8. public string SeriesName { get; set; }
  9. public bool Success { get; set; }
  10. public bool IsByDate { get; set; }
  11. public int? Year { get; set; }
  12. public int? Month { get; set; }
  13. public int? Day { get; set; }
  14. }
  15. }