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

59 lines
1.1 KiB

namespace MediaBrowser.Model.Entities
{
/// <summary>
/// Enum ImageType
/// </summary>
public enum ImageType
{
/// <summary>
/// The primary
/// </summary>
Primary,
/// <summary>
/// The art
/// </summary>
Art,
/// <summary>
/// The backdrop
/// </summary>
Backdrop,
/// <summary>
/// The banner
/// </summary>
Banner,
/// <summary>
/// The logo
/// </summary>
Logo,
/// <summary>
/// The thumb
/// </summary>
Thumb,
/// <summary>
/// The disc
/// </summary>
Disc,
/// <summary>
/// The box
/// </summary>
Box,
/// <summary>
/// The screenshot
/// </summary>
Screenshot,
/// <summary>
/// The menu
/// </summary>
Menu,
/// <summary>
/// The chapter image
/// </summary>
Chapter,
/// <summary>
/// The box rear
/// </summary>
BoxRear
}
}