ChannelInfo.cs 741 B

12345678910111213141516171819202122232425262728
  1. using MediaBrowser.Model.LiveTv;
  2. namespace MediaBrowser.Controller.LiveTv
  3. {
  4. /// <summary>
  5. /// Class ChannelInfo
  6. /// </summary>
  7. public class ChannelInfo
  8. {
  9. /// <summary>
  10. /// Gets or sets the name.
  11. /// </summary>
  12. /// <value>The name.</value>
  13. public string Name { get; set; }
  14. /// <summary>
  15. /// Gets or sets the name of the service.
  16. /// </summary>
  17. /// <value>The name of the service.</value>
  18. public string ServiceName { get; set; }
  19. /// <summary>
  20. /// Gets or sets the type of the channel.
  21. /// </summary>
  22. /// <value>The type of the channel.</value>
  23. public ChannelType ChannelType { get; set; }
  24. }
  25. }