using MediaBrowser.Model.LiveTv; namespace MediaBrowser.Controller.LiveTv { /// /// Class ChannelInfo /// public class ChannelInfo { /// /// Gets or sets the name. /// /// The name. public string Name { get; set; } /// /// Gets or sets the number. /// /// The number. public string Number { get; set; } /// /// Get or sets the Id. /// /// The id of the channel. public string Id { get; set; } /// /// Gets or sets the type of the channel. /// /// The type of the channel. public ChannelType ChannelType { get; set; } /// /// Set this value to true or false if it is known via channel info whether there is an image or not. /// Leave it null if the only way to determine is by requesting the image and handling the failure. /// public bool? HasImage { get; set; } } }