aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Enums/PreferenceKind.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Enums/PreferenceKind.cs')
-rw-r--r--Jellyfin.Data/Enums/PreferenceKind.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Jellyfin.Data/Enums/PreferenceKind.cs b/Jellyfin.Data/Enums/PreferenceKind.cs
new file mode 100644
index 000000000..e66a51cae
--- /dev/null
+++ b/Jellyfin.Data/Enums/PreferenceKind.cs
@@ -0,0 +1,15 @@
+using System;
+
+namespace Jellyfin.Data.Enums
+{
+ public enum PreferenceKind : Int32
+ {
+ MaxParentalRating,
+ BlockedTags,
+ RemoteClientBitrateLimit,
+ EnabledDevices,
+ EnabledChannels,
+ EnabledFolders,
+ EnableContentDeletionFromFolders
+ }
+}