aboutsummaryrefslogtreecommitdiff
path: root/src/Jellyfin.Database/Jellyfin.Database.Implementations/Enums/PreferenceKind.cs
blob: f70e3e2c232952d3244c7645328008c18b072f33 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
namespace Jellyfin.Database.Implementations.Enums;

/// <summary>
/// The types of user preferences.
/// </summary>
public enum PreferenceKind
{
    /// <summary>
    /// A list of blocked tags.
    /// </summary>
    BlockedTags = 0,

    /// <summary>
    /// A list of blocked channels.
    /// </summary>
    BlockedChannels = 1,

    /// <summary>
    /// A list of blocked media folders.
    /// </summary>
    BlockedMediaFolders = 2,

    /// <summary>
    /// A list of enabled devices.
    /// </summary>
    EnabledDevices = 3,

    /// <summary>
    /// A list of enabled channels.
    /// </summary>
    EnabledChannels = 4,

    /// <summary>
    /// A list of enabled folders.
    /// </summary>
    EnabledFolders = 5,

    /// <summary>
    /// A list of folders to allow content deletion from.
    /// </summary>
    EnableContentDeletionFromFolders = 6,

    /// <summary>
    /// A list of latest items to exclude.
    /// </summary>
    LatestItemExcludes = 7,

    /// <summary>
    /// A list of media to exclude.
    /// </summary>
    MyMediaExcludes = 8,

    /// <summary>
    /// A list of grouped folders.
    /// </summary>
    GroupedFolders = 9,

    /// <summary>
    /// A list of unrated items to block.
    /// </summary>
    BlockUnratedItems = 10,

    /// <summary>
    /// A list of ordered views.
    /// </summary>
    OrderedViews = 11,

    /// <summary>
    /// A list of allowed tags.
    /// </summary>
    AllowedTags = 12
}