RecurringTimerInfo.cs 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. using MediaBrowser.Model.LiveTv;
  2. using System;
  3. namespace MediaBrowser.Controller.LiveTv
  4. {
  5. public class RecurringTimerInfo
  6. {
  7. /// <summary>
  8. /// Id of the recording.
  9. /// </summary>
  10. public string Id { get; set; }
  11. /// <summary>
  12. /// ChannelId of the recording.
  13. /// </summary>
  14. public string ChannelId { get; set; }
  15. /// <summary>
  16. /// ChannelName of the recording.
  17. /// </summary>
  18. public string ChannelName { get; set; }
  19. /// <summary>
  20. /// Gets or sets the program identifier.
  21. /// </summary>
  22. /// <value>The program identifier.</value>
  23. public string ProgramId { get; set; }
  24. /// <summary>
  25. /// Name of the recording.
  26. /// </summary>
  27. public string Name { get; set; }
  28. /// <summary>
  29. /// Description of the recording.
  30. /// </summary>
  31. public string Description { get; set; }
  32. /// <summary>
  33. /// The start date of the recording, in UTC.
  34. /// </summary>
  35. public DateTime StartDate { get; set; }
  36. /// <summary>
  37. /// The end date of the recording, in UTC.
  38. /// </summary>
  39. public DateTime EndDate { get; set; }
  40. /// <summary>
  41. /// Gets or sets the status.
  42. /// </summary>
  43. /// <value>The status.</value>
  44. public RecordingStatus Status { get; set; }
  45. /// <summary>
  46. /// Gets or sets the pre padding seconds.
  47. /// </summary>
  48. /// <value>The pre padding seconds.</value>
  49. public int PrePaddingSeconds { get; set; }
  50. /// <summary>
  51. /// Gets or sets the post padding seconds.
  52. /// </summary>
  53. /// <value>The post padding seconds.</value>
  54. public int PostPaddingSeconds { get; set; }
  55. /// <summary>
  56. /// Gets or sets the type of the recurrence.
  57. /// </summary>
  58. /// <value>The type of the recurrence.</value>
  59. public RecurrenceType RecurrenceType { get; set; }
  60. }
  61. }