TimerInfoDto.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. using System;
  2. namespace MediaBrowser.Model.LiveTv
  3. {
  4. public class TimerInfoDto
  5. {
  6. /// <summary>
  7. /// Id of the recording.
  8. /// </summary>
  9. public string Id { get; set; }
  10. /// <summary>
  11. /// Gets or sets the external identifier.
  12. /// </summary>
  13. /// <value>The external identifier.</value>
  14. public string ExternalId { get; set; }
  15. /// <summary>
  16. /// ChannelId of the recording.
  17. /// </summary>
  18. public string ChannelId { get; set; }
  19. /// <summary>
  20. /// Gets or sets the external channel identifier.
  21. /// </summary>
  22. /// <value>The external channel identifier.</value>
  23. public string ExternalChannelId { get; set; }
  24. /// <summary>
  25. /// ChannelName of the recording.
  26. /// </summary>
  27. public string ChannelName { get; set; }
  28. /// <summary>
  29. /// Gets or sets the name of the service.
  30. /// </summary>
  31. /// <value>The name of the service.</value>
  32. public string ServiceName { get; set; }
  33. /// <summary>
  34. /// Gets or sets the program identifier.
  35. /// </summary>
  36. /// <value>The program identifier.</value>
  37. public string ProgramId { get; set; }
  38. /// <summary>
  39. /// Name of the recording.
  40. /// </summary>
  41. public string Name { get; set; }
  42. /// <summary>
  43. /// Description of the recording.
  44. /// </summary>
  45. public string Overview { get; set; }
  46. /// <summary>
  47. /// The start date of the recording, in UTC.
  48. /// </summary>
  49. public DateTime StartDate { get; set; }
  50. /// <summary>
  51. /// The end date of the recording, in UTC.
  52. /// </summary>
  53. public DateTime EndDate { get; set; }
  54. /// <summary>
  55. /// Gets or sets the status.
  56. /// </summary>
  57. /// <value>The status.</value>
  58. public RecordingStatus Status { get; set; }
  59. /// <summary>
  60. /// Gets or sets the series timer identifier.
  61. /// </summary>
  62. /// <value>The series timer identifier.</value>
  63. public string SeriesTimerId { get; set; }
  64. /// <summary>
  65. /// Gets or sets the external series timer identifier.
  66. /// </summary>
  67. /// <value>The external series timer identifier.</value>
  68. public string ExternalSeriesTimerId { get; set; }
  69. /// <summary>
  70. /// Gets or sets the requested pre padding seconds.
  71. /// </summary>
  72. /// <value>The requested pre padding seconds.</value>
  73. public int RequestedPrePaddingSeconds { get; set; }
  74. /// <summary>
  75. /// Gets or sets the requested post padding seconds.
  76. /// </summary>
  77. /// <value>The requested post padding seconds.</value>
  78. public int RequestedPostPaddingSeconds { get; set; }
  79. /// <summary>
  80. /// Gets or sets the required pre padding seconds.
  81. /// </summary>
  82. /// <value>The required pre padding seconds.</value>
  83. public int RequiredPrePaddingSeconds { get; set; }
  84. /// <summary>
  85. /// Gets or sets the required post padding seconds.
  86. /// </summary>
  87. /// <value>The required post padding seconds.</value>
  88. public int RequiredPostPaddingSeconds { get; set; }
  89. /// <summary>
  90. /// Gets or sets the duration ms.
  91. /// </summary>
  92. /// <value>The duration ms.</value>
  93. public int DurationMs { get; set; }
  94. }
  95. }