aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Enums/PreferenceKind.cs
blob: ea1221e1afd1078dce26a724ac4e1d8d35526bdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Jellyfin.Data.Enums
{
    public enum PreferenceKind
    {
        BlockedTags,
        BlockedChannels,
        BlockedMediaFolders,
        EnabledDevices,
        EnabledChannels,
        EnabledFolders,
        EnableContentDeletionFromFolders,
        LatestItemExcludes,
        MyMediaExcludes,
        GroupedFolders,
        BlockUnratedItems,
        OrderedViews
    }
}