jellyfin/MediaBrowser.Model/Entities/ImageType.cs

78 lines
1.5 KiB
C#
Raw Normal View History

2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.Entities
{
/// <summary>
2020-02-04 01:49:27 +01:00
/// Enum ImageType.
2018-12-28 00:27:57 +01:00
/// </summary>
public enum ImageType
{
/// <summary>
2020-02-04 01:49:27 +01:00
/// The primary.
2018-12-28 00:27:57 +01:00
/// </summary>
Primary = 0,
2020-02-04 01:49:27 +01:00
2018-12-28 00:27:57 +01:00
/// <summary>
2020-02-04 01:49:27 +01:00
/// The art.
2018-12-28 00:27:57 +01:00
/// </summary>
Art = 1,
2020-02-04 01:49:27 +01:00
2018-12-28 00:27:57 +01:00
/// <summary>
2020-02-04 01:49:27 +01:00
/// The backdrop.
2018-12-28 00:27:57 +01:00
/// </summary>
Backdrop = 2,
2020-02-04 01:49:27 +01:00
2018-12-28 00:27:57 +01:00
/// <summary>
2020-02-04 01:49:27 +01:00
/// The banner.
2018-12-28 00:27:57 +01:00
/// </summary>
Banner = 3,
2020-02-04 01:49:27 +01:00
2018-12-28 00:27:57 +01:00
/// <summary>
2020-02-04 01:49:27 +01:00
/// The logo.
2018-12-28 00:27:57 +01:00
/// </summary>
Logo = 4,
2020-02-04 01:49:27 +01:00
2018-12-28 00:27:57 +01:00
/// <summary>
2020-02-04 01:49:27 +01:00
/// The thumb.
2018-12-28 00:27:57 +01:00
/// </summary>
Thumb = 5,
2020-02-04 01:49:27 +01:00
2018-12-28 00:27:57 +01:00
/// <summary>
2020-02-04 01:49:27 +01:00
/// The disc.
2018-12-28 00:27:57 +01:00
/// </summary>
Disc = 6,
2020-02-04 01:49:27 +01:00
2018-12-28 00:27:57 +01:00
/// <summary>
2020-02-04 01:49:27 +01:00
/// The box.
2018-12-28 00:27:57 +01:00
/// </summary>
Box = 7,
2018-12-28 00:27:57 +01:00
/// <summary>
2020-02-04 01:49:27 +01:00
/// The screenshot.
2018-12-28 00:27:57 +01:00
/// </summary>
2021-11-12 14:55:26 +01:00
/// <remarks>
/// This enum value is obsolete.
/// XmlSerializer does not serialize/deserialize objects that are marked as [Obsolete].
/// </remarks>
2018-12-28 00:27:57 +01:00
Screenshot = 8,
2020-02-04 01:49:27 +01:00
2018-12-28 00:27:57 +01:00
/// <summary>
2020-02-04 01:49:27 +01:00
/// The menu.
2018-12-28 00:27:57 +01:00
/// </summary>
Menu = 9,
2020-02-04 01:49:27 +01:00
2018-12-28 00:27:57 +01:00
/// <summary>
2020-02-04 01:49:27 +01:00
/// The chapter image.
2018-12-28 00:27:57 +01:00
/// </summary>
Chapter = 10,
2020-02-04 01:49:27 +01:00
2018-12-28 00:27:57 +01:00
/// <summary>
2020-02-04 01:49:27 +01:00
/// The box rear.
2018-12-28 00:27:57 +01:00
/// </summary>
2020-05-20 18:09:52 +02:00
BoxRear = 11,
/// <summary>
/// The user profile image.
/// </summary>
Profile = 12
2018-12-28 00:27:57 +01:00
}
}