TimerInfoDto.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 recurring timer identifier.
  51. /// </summary>
  52. /// <value>The recurring timer identifier.</value>
  53. public string RecurringTimerId { get; set; }
  54. /// <summary>
  55. /// Gets or sets the pre padding seconds.
  56. /// </summary>
  57. /// <value>The pre padding seconds.</value>
  58. public int PrePaddingSeconds { get; set; }
  59. /// <summary>
  60. /// Gets or sets the post padding seconds.
  61. /// </summary>
  62. /// <value>The post padding seconds.</value>
  63. public int PostPaddingSeconds { get; set; }
  64. }
  65. }