aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Enums/PreferenceKind.cs
blob: d2b412e45976d30a920f650b0c875a3e550ffb90 (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
73
namespace Jellyfin.Data.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
    }
}