EpisodeInfo.cs 1.8 KB

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