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

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