using MediaBrowser.Model.Dto; using MediaBrowser.Model.Entities; using System; using System.Collections.Generic; namespace MediaBrowser.Model.LiveTv { /// /// Class ChannelInfoDto /// public class ChannelInfoDto : IItemDto { /// /// 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 external identifier. /// /// The external identifier. public string ExternalId { get; set; } /// /// Gets or sets the image tags. /// /// The image tags. public Dictionary ImageTags { 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; } /// /// Gets or sets the now playing program. /// /// The now playing program. public ProgramInfoDto CurrentProgram { get; set; } /// /// Gets or sets the primary image aspect ratio, after image enhancements. /// /// The primary image aspect ratio. public double? PrimaryImageAspectRatio { get; set; } /// /// Gets or sets the primary image aspect ratio, before image enhancements. /// /// The original primary image aspect ratio. public double? OriginalPrimaryImageAspectRatio { get; set; } public ChannelInfoDto() { ImageTags = new Dictionary(); } } }