ChannelGuide.cs 605 B

1234567891011121314151617181920212223
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.LiveTv
  3. {
  4. public class ChannelGuide
  5. {
  6. /// <summary>
  7. /// Gets or sets the name of the service.
  8. /// </summary>
  9. /// <value>The name of the service.</value>
  10. public string ServiceName { get; set; }
  11. /// <summary>
  12. /// ChannelId for the EPG.
  13. /// </summary>
  14. public string ChannelId { get; set; }
  15. /// <summary>
  16. /// List of all the programs for a specific channel
  17. /// </summary>
  18. public List<ProgramInfo> Programs { get; set; }
  19. }
  20. }