jellyfin/Jellyfin.Data/Enums/ArtKind.cs

34 lines
634 B
C#
Raw Normal View History

namespace Jellyfin.Data.Enums
{
2020-08-31 23:04:05 -04:00
/// <summary>
/// An enum representing types of art.
/// </summary>
2020-05-10 10:54:41 -04:00
public enum ArtKind
2020-05-02 17:56:05 -04:00
{
2020-08-31 23:04:05 -04: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 17:56:05 -04:00
}
}