Files
jellyfin-jellyfin-1/MediaBrowser.Model/Entities/ImageType.cs

59 lines
1.2 KiB
C#
Raw Normal View History

2013-02-20 20:33:05 -05:00

namespace MediaBrowser.Model.Entities
{
/// <summary>
/// Enum ImageType
/// </summary>
public enum ImageType
{
/// <summary>
/// The primary
/// </summary>
2016-06-03 12:24:04 -04:00
Primary = 0,
2013-02-20 20:33:05 -05:00
/// <summary>
/// The art
/// </summary>
2016-06-03 12:24:04 -04:00
Art = 1,
2013-02-20 20:33:05 -05:00
/// <summary>
/// The backdrop
/// </summary>
2016-06-03 12:24:04 -04:00
Backdrop = 2,
2013-02-20 20:33:05 -05:00
/// <summary>
/// The banner
/// </summary>
2016-06-03 12:24:04 -04:00
Banner = 3,
2013-02-20 20:33:05 -05:00
/// <summary>
/// The logo
/// </summary>
2016-06-03 12:24:04 -04:00
Logo = 4,
2013-02-20 20:33:05 -05:00
/// <summary>
/// The thumb
/// </summary>
2016-06-03 12:24:04 -04:00
Thumb = 5,
2013-02-20 20:33:05 -05:00
/// <summary>
/// The disc
/// </summary>
2016-06-03 12:24:04 -04:00
Disc = 6,
2013-02-20 20:33:05 -05:00
/// <summary>
/// The box
/// </summary>
2016-06-03 12:24:04 -04:00
Box = 7,
2013-02-20 20:33:05 -05:00
/// <summary>
/// The screenshot
/// </summary>
2016-06-03 12:24:04 -04:00
Screenshot = 8,
2013-02-20 20:33:05 -05:00
/// <summary>
/// The menu
/// </summary>
2016-06-03 12:24:04 -04:00
Menu = 9,
2013-02-20 20:33:05 -05:00
/// <summary>
/// The chapter image
/// </summary>
2016-06-03 12:24:04 -04:00
Chapter = 10,
2013-04-28 21:25:01 -04:00
/// <summary>
/// The box rear
/// </summary>
2016-06-03 12:24:04 -04:00
BoxRear = 11
2013-02-20 20:33:05 -05:00
}
}