RecordingInfoDto.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. using System;
  2. namespace MediaBrowser.Model.LiveTv
  3. {
  4. public class RecordingInfoDto
  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. /// Gets or sets the program identifier.
  17. /// </summary>
  18. /// <value>The program identifier.</value>
  19. public string ProgramId { get; set; }
  20. /// <summary>
  21. /// ChannelId of the recording.
  22. /// </summary>
  23. public string ChannelId { get; set; }
  24. /// <summary>
  25. /// ChannelName of the recording.
  26. /// </summary>
  27. public string ChannelName { 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. }
  50. }