RecordingInfo.cs 615 B

123456789101112131415161718192021222324252627
  1. using System;
  2. namespace MediaBrowser.Model.LiveTv
  3. {
  4. public class RecordingInfo
  5. {
  6. public string ChannelId { get; set; }
  7. public string ChannelName { get; set; }
  8. public string Id { get; set; }
  9. public string Name { get; set; }
  10. public string Description { get; set; }
  11. /// <summary>
  12. /// The start date of the recording, in UTC
  13. /// </summary>
  14. public DateTime StartDate { get; set; }
  15. /// <summary>
  16. /// The end date of the recording, in UTC
  17. /// </summary>
  18. public DateTime EndDate { get; set; }
  19. }
  20. }