EpisodeInfo.cs 1.7 KB

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