aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Enums/ArtKind.cs
blob: f7a73848c801ba4f8a7de4f37e1fdd8bbc2585aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
namespace Jellyfin.Data.Enums
{
    /// <summary>
    /// An enum representing types of art.
    /// </summary>
    public enum ArtKind
    {
        /// <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
    }
}