You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/Entities/ImageType.cs

58 lines
1.2 KiB

namespace MediaBrowser.Model.Entities
{
/// <summary>
/// Enum ImageType
/// </summary>
public enum ImageType
{
/// <summary>
/// The primary
/// </summary>
Primary = 0,
/// <summary>
/// The art
/// </summary>
Art = 1,
/// <summary>
/// The backdrop
/// </summary>
Backdrop = 2,
/// <summary>
/// The banner
/// </summary>
Banner = 3,
/// <summary>
/// The logo
/// </summary>
Logo = 4,
/// <summary>
/// The thumb
/// </summary>
Thumb = 5,
/// <summary>
/// The disc
/// </summary>
Disc = 6,
/// <summary>
/// The box
/// </summary>
Box = 7,
/// <summary>
/// The screenshot
/// </summary>
Screenshot = 8,
/// <summary>
/// The menu
/// </summary>
Menu = 9,
/// <summary>
/// The chapter image
/// </summary>
Chapter = 10,
/// <summary>
/// The box rear
/// </summary>
BoxRear = 11
}
}