namespace MediaBrowser.Model.Entities
{
    /// 
    /// Enum ImageType.
    /// 
    public enum ImageType
    {
        /// 
        /// The primary.
        /// 
        Primary = 0,
        /// 
        /// The art.
        /// 
        Art = 1,
        /// 
        /// The backdrop.
        /// 
        Backdrop = 2,
        /// 
        /// The banner.
        /// 
        Banner = 3,
        /// 
        /// The logo.
        /// 
        Logo = 4,
        /// 
        /// The thumb.
        /// 
        Thumb = 5,
        /// 
        /// The disc.
        /// 
        Disc = 6,
        /// 
        /// The box.
        /// 
        Box = 7,
        /// 
        /// The screenshot.
        /// 
        /// 
        /// This enum value is obsolete.
        /// XmlSerializer does not serialize/deserialize objects that are marked as [Obsolete].
        /// 
        Screenshot = 8,
        /// 
        /// The menu.
        /// 
        Menu = 9,
        /// 
        /// The chapter image.
        /// 
        Chapter = 10,
        /// 
        /// The box rear.
        /// 
        BoxRear = 11,
        /// 
        /// The user profile image.
        /// 
        Profile = 12
    }
}