namespace MediaBrowser.Model.Providers
{
    /// 
    /// The specific media type of an .
    /// 
    /// 
    /// Client applications may use this as a translation key.
    /// 
    public enum ExternalIdMediaType
    {
        /// 
        /// A music album.
        /// 
        Album = 1,
        /// 
        /// The artist of a music album.
        /// 
        AlbumArtist = 2,
        /// 
        /// The artist of a media item.
        /// 
        Artist = 3,
        /// 
        /// A boxed set of media.
        /// 
        BoxSet = 4,
        /// 
        /// A series episode.
        /// 
        Episode = 5,
        /// 
        /// A movie.
        /// 
        Movie = 6,
        /// 
        /// An alternative artist apart from the main artist.
        /// 
        OtherArtist = 7,
        /// 
        /// A person.
        /// 
        Person = 8,
        /// 
        /// A release group.
        /// 
        ReleaseGroup = 9,
        /// 
        /// A single season of a series.
        /// 
        Season = 10,
        /// 
        /// A series.
        /// 
        Series = 11,
        /// 
        /// A music track.
        /// 
        Track = 12,
        /// 
        /// A book.
        /// 
        Book = 13,
        /// 
        /// A music recording.
        /// 
        Recording = 14
    }
}