aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/ItemValueType.cs
blob: 006036b40ee4b2f9d9614556ae3e7af494fd0727 (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
34
35
36
37
38
39
40
41
namespace Jellyfin.Data.Entities;

/// <summary>
/// Provides the Value types for an <see cref="ItemValue"/>.
/// </summary>
#pragma warning disable CA1027 // Mark enums with FlagsAttribute
public enum ItemValueType
#pragma warning restore CA1027 // Mark enums with FlagsAttribute
{
    /// <summary>
    /// Artists.
    /// </summary>
#pragma warning disable CA1008 // Enums should have zero value. Cannot apply here.
    Artist = 0,
#pragma warning restore CA1008 // Enums should have zero value

    /// <summary>
    /// Album.
    /// </summary>
    AlbumArtist = 1,

    /// <summary>
    /// Genre.
    /// </summary>
    Genre = 2,

    /// <summary>
    /// Studios.
    /// </summary>
    Studios = 3,

    /// <summary>
    /// Tags.
    /// </summary>
    Tags = 4,

    /// <summary>
    /// InheritedTags.
    /// </summary>
    InheritedTags = 6,
}