RecordingInfo.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. using MediaBrowser.Model.LiveTv;
  2. using System;
  3. namespace MediaBrowser.Controller.LiveTv
  4. {
  5. public class RecordingInfo
  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. /// Name of the recording.
  21. /// </summary>
  22. public string Name { get; set; }
  23. /// <summary>
  24. /// Description of the recording.
  25. /// </summary>
  26. public string Description { get; set; }
  27. /// <summary>
  28. /// The start date of the recording, in UTC.
  29. /// </summary>
  30. public DateTime StartDate { get; set; }
  31. /// <summary>
  32. /// The end date of the recording, in UTC.
  33. /// </summary>
  34. public DateTime EndDate { get; set; }
  35. /// <summary>
  36. /// Gets or sets the program identifier.
  37. /// </summary>
  38. /// <value>The program identifier.</value>
  39. public string ProgramId { get; set; }
  40. /// <summary>
  41. /// Gets or sets the status.
  42. /// </summary>
  43. /// <value>The status.</value>
  44. public RecordingStatus Status { get; set; }
  45. }
  46. }