jellyfin/Jellyfin.Data/Enums/ArtKind.cs

34 lines
634 B
C#
Raw Normal View History

namespace Jellyfin.Data.Enums
{
2020-09-01 05:04:05 +02:00
/// <summary>
/// An enum representing types of art.
/// </summary>
2020-05-10 16:54:41 +02:00
public enum ArtKind
2020-05-02 23:56:05 +02:00
{
2020-09-01 05:04:05 +02:00
/// <summary>
/// Another type of art, not covered by the other members.
/// </summary>
Other = 0,
/// <summary>
/// A poster.
/// </summary>
Poster = 1,
/// <summary>
/// A banner.
/// </summary>
Banner = 2,
/// <summary>
/// A thumbnail.
/// </summary>
Thumbnail = 3,
/// <summary>
/// A logo.
/// </summary>
Logo = 4
2020-05-02 23:56:05 +02:00
}
}