using MediaBrowser.Model.Dto; using MediaBrowser.Model.Entities; using System; using System.Collections.Generic; namespace MediaBrowser.Model.MediaInfo { public class MediaInfo : MediaSourceInfo, IHasProviderIds { public List Chapters { get; set; } /// /// Gets or sets the title. /// /// The title. public string Title { get; set; } /// /// Gets or sets the album. /// /// The album. public string Album { get; set; } /// /// Gets or sets the artists. /// /// The artists. public List Artists { get; set; } /// /// Gets or sets the album artists. /// /// The album artists. public List AlbumArtists { get; set; } /// /// Gets or sets the studios. /// /// The studios. public List Studios { get; set; } public List Genres { get; set; } public int? IndexNumber { get; set; } public int? ParentIndexNumber { get; set; } public int? ProductionYear { get; set; } public DateTime? PremiereDate { get; set; } public List People { get; set; } public Dictionary ProviderIds { get; set; } /// /// Gets or sets the official rating. /// /// The official rating. public string OfficialRating { get; set; } /// /// Gets or sets the overview. /// /// The overview. public string Overview { get; set; } public MediaInfo() { Chapters = new List(); Artists = new List(); AlbumArtists = new List(); Studios = new List(); Genres = new List(); People = new List(); ProviderIds = new Dictionary(StringComparer.OrdinalIgnoreCase); } } }