using System; using MediaBrowser.Model.Dto; namespace MediaBrowser.Model.LiveTv { /// /// Class ChannelInfoDto /// public class ChannelInfoDto { /// /// Gets or sets the name. /// /// The name. public string Name { get; set; } /// /// Gets or sets the identifier. /// /// The identifier. public string Id { get; set; } /// /// Gets or sets the logo image tag. /// /// The logo image tag. public Guid? PrimaryImageTag { get; set; } /// /// Gets or sets the number. /// /// The number. public string Number { get; set; } /// /// Gets or sets the name of the service. /// /// The name of the service. public string ServiceName { get; set; } /// /// Gets or sets the type of the channel. /// /// The type of the channel. public ChannelType ChannelType { get; set; } /// /// Gets or sets the type. /// /// The type. public string Type { get; set; } /// /// Gets or sets the type of the media. /// /// The type of the media. public string MediaType { get; set; } /// /// Gets or sets the user data. /// /// The user data. public UserItemDataDto UserData { get; set; } } }