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
        /// 
        Screenshot = 8,
        /// 
        /// The menu
        /// 
        Menu = 9,
        /// 
        /// The chapter image
        /// 
        Chapter = 10,
        /// 
        /// The box rear
        /// 
        BoxRear = 11
    }
}