EpisodeInfo.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #pragma warning disable CS1591
  2. namespace Emby.Naming.TV
  3. {
  4. public class EpisodeInfo
  5. {
  6. /// <summary>
  7. /// Gets or sets the path.
  8. /// </summary>
  9. /// <value>The path.</value>
  10. public string Path { get; set; }
  11. /// <summary>
  12. /// Gets or sets the container.
  13. /// </summary>
  14. /// <value>The container.</value>
  15. public string Container { get; set; }
  16. /// <summary>
  17. /// Gets or sets the name of the series.
  18. /// </summary>
  19. /// <value>The name of the series.</value>
  20. public string SeriesName { get; set; }
  21. /// <summary>
  22. /// Gets or sets the format3 d.
  23. /// </summary>
  24. /// <value>The format3 d.</value>
  25. public string Format3D { get; set; }
  26. /// <summary>
  27. /// Gets or sets a value indicating whether [is3 d].
  28. /// </summary>
  29. /// <value><c>true</c> if [is3 d]; otherwise, <c>false</c>.</value>
  30. public bool Is3D { get; set; }
  31. /// <summary>
  32. /// Gets or sets a value indicating whether this instance is stub.
  33. /// </summary>
  34. /// <value><c>true</c> if this instance is stub; otherwise, <c>false</c>.</value>
  35. public bool IsStub { get; set; }
  36. /// <summary>
  37. /// Gets or sets the type of the stub.
  38. /// </summary>
  39. /// <value>The type of the stub.</value>
  40. public string StubType { get; set; }
  41. public int? SeasonNumber { get; set; }
  42. public int? EpisodeNumber { get; set; }
  43. public int? EndingEpsiodeNumber { get; set; }
  44. public int? Year { get; set; }
  45. public int? Month { get; set; }
  46. public int? Day { get; set; }
  47. public bool IsByDate { get; set; }
  48. }
  49. }