ChannelInfo.cs 507 B

123456789101112131415161718192021
  1. 
  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. }
  20. }