EpisodePathParserResult.cs 520 B

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