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

78 lines
1.5 KiB

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