TimerInfoDto.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. /// ChannelName of the recording.
  21. /// </summary>
  22. public string ChannelName { get; set; }
  23. /// <summary>
  24. /// Gets or sets the program identifier.
  25. /// </summary>
  26. /// <value>The program identifier.</value>
  27. public string ProgramId { get; set; }
  28. /// <summary>
  29. /// Name of the recording.
  30. /// </summary>
  31. public string Name { get; set; }
  32. /// <summary>
  33. /// Description of the recording.
  34. /// </summary>
  35. public string Description { get; set; }
  36. /// <summary>
  37. /// The start date of the recording, in UTC.
  38. /// </summary>
  39. public DateTime StartDate { get; set; }
  40. /// <summary>
  41. /// The end date of the recording, in UTC.
  42. /// </summary>
  43. public DateTime EndDate { get; set; }
  44. /// <summary>
  45. /// Gets or sets the status.
  46. /// </summary>
  47. /// <value>The status.</value>
  48. public RecordingStatus Status { get; set; }
  49. /// <summary>
  50. /// Gets or sets the series timer identifier.
  51. /// </summary>
  52. /// <value>The series timer identifier.</value>
  53. public string SeriesTimerId { get; set; }
  54. /// <summary>
  55. /// Gets or sets the requested pre padding seconds.
  56. /// </summary>
  57. /// <value>The requested pre padding seconds.</value>
  58. public int RequestedPrePaddingSeconds { get; set; }
  59. /// <summary>
  60. /// Gets or sets the requested post padding seconds.
  61. /// </summary>
  62. /// <value>The requested post padding seconds.</value>
  63. public int RequestedPostPaddingSeconds { get; set; }
  64. /// <summary>
  65. /// Gets or sets the required pre padding seconds.
  66. /// </summary>
  67. /// <value>The required pre padding seconds.</value>
  68. public int RequiredPrePaddingSeconds { get; set; }
  69. /// <summary>
  70. /// Gets or sets the required post padding seconds.
  71. /// </summary>
  72. /// <value>The required post padding seconds.</value>
  73. public int RequiredPostPaddingSeconds { get; set; }
  74. /// <summary>
  75. /// Gets or sets the duration ms.
  76. /// </summary>
  77. /// <value>The duration ms.</value>
  78. public int DurationMs { get; set; }
  79. }
  80. }