using MediaBrowser.Controller.Entities; using MediaBrowser.Model.Channels; using MediaBrowser.Model.Entities; using System; using System.Collections.Generic; namespace MediaBrowser.Controller.Channels { public class ChannelItemInfo : IHasProviderIds { public string Name { get; set; } public string SeriesName { get; set; } public string Id { get; set; } public ChannelItemType Type { get; set; } public string OfficialRating { get; set; } public string Overview { get; set; } public List Genres { get; set; } public List Studios { get; set; } public List Tags { get; set; } public List People { get; set; } public float? CommunityRating { get; set; } public long? RunTimeTicks { get; set; } public string ImageUrl { get; set; } public ChannelMediaType MediaType { get; set; } public ChannelFolderType FolderType { get; set; } public ChannelMediaContentType ContentType { get; set; } public ExtraType ExtraType { get; set; } public List TrailerTypes { get; set; } public Dictionary ProviderIds { get; set; } public DateTime? PremiereDate { get; set; } public int? ProductionYear { get; set; } public DateTime? DateCreated { get; set; } public int? IndexNumber { get; set; } public int? ParentIndexNumber { get; set; } public List MediaSources { get; set; } public bool IsInfiniteStream { get; set; } public string HomePageUrl { get; set; } public List Artists { get; set; } public List AlbumArtists { get; set; } public ChannelItemInfo() { MediaSources = new List(); TrailerTypes = new List(); Genres = new List(); Studios = new List(); People = new List(); Tags = new List(); ProviderIds = new Dictionary(StringComparer.OrdinalIgnoreCase); Artists = new List(); AlbumArtists = new List(); } } }