aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Enums/PreferenceKind.cs
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2020-05-12 22:10:35 -0400
committerPatrick Barron <barronpm@gmail.com>2020-05-12 22:10:35 -0400
commit9ad839c7766bd5d6121a10b2c306d6fef9666c52 (patch)
tree47833157e6b40eba243a937b8c93b4bec11de9dd /Jellyfin.Data/Enums/PreferenceKind.cs
parenta78184ef4423be8e320f642eb7b0155810d86cbd (diff)
Initial migration code
Diffstat (limited to 'Jellyfin.Data/Enums/PreferenceKind.cs')
-rw-r--r--Jellyfin.Data/Enums/PreferenceKind.cs13
1 files changed, 9 insertions, 4 deletions
diff --git a/Jellyfin.Data/Enums/PreferenceKind.cs b/Jellyfin.Data/Enums/PreferenceKind.cs
index e66a51cae1..34e20ead6a 100644
--- a/Jellyfin.Data/Enums/PreferenceKind.cs
+++ b/Jellyfin.Data/Enums/PreferenceKind.cs
@@ -2,14 +2,19 @@ using System;
namespace Jellyfin.Data.Enums
{
- public enum PreferenceKind : Int32
+ public enum PreferenceKind
{
- MaxParentalRating,
BlockedTags,
- RemoteClientBitrateLimit,
+ BlockedChannels,
+ BlockedMediaFolders,
EnabledDevices,
EnabledChannels,
EnabledFolders,
- EnableContentDeletionFromFolders
+ EnableContentDeletionFromFolders,
+ LatestItemExcludes,
+ MyMediaExcludes,
+ GroupedFolders,
+ BlockUnratedItems,
+ OrderedViews
}
}