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.cs50
1 files changed, 50 insertions, 0 deletions
diff --git a/Jellyfin.Data/Enums/PreferenceKind.cs b/Jellyfin.Data/Enums/PreferenceKind.cs
index ea1221e1a..e0e9cfe04 100644
--- a/Jellyfin.Data/Enums/PreferenceKind.cs
+++ b/Jellyfin.Data/Enums/PreferenceKind.cs
@@ -1,18 +1,68 @@
namespace Jellyfin.Data.Enums
{
+ /// <summary>
+ /// The types of user preferences.
+ /// </summary>
public enum PreferenceKind
{
+ /// <summary>
+ /// A list of blocked tags.
+ /// </summary>
BlockedTags,
+
+ /// <summary>
+ /// A list of blocked channels.
+ /// </summary>
BlockedChannels,
+
+ /// <summary>
+ /// A list of blocked media folders.
+ /// </summary>
BlockedMediaFolders,
+
+ /// <summary>
+ /// A list of enabled devices.
+ /// </summary>
EnabledDevices,
+
+ /// <summary>
+ /// A list of enabled channels
+ /// </summary>
EnabledChannels,
+
+ /// <summary>
+ /// A list of enabled folders.
+ /// </summary>
EnabledFolders,
+
+ /// <summary>
+ /// A list of folders to allow content deletion from.
+ /// </summary>
EnableContentDeletionFromFolders,
+
+ /// <summary>
+ /// A list of latest items to exclude.
+ /// </summary>
LatestItemExcludes,
+
+ /// <summary>
+ /// A list of media to exclude.
+ /// </summary>
MyMediaExcludes,
+
+ /// <summary>
+ /// A list of grouped folders.
+ /// </summary>
GroupedFolders,
+
+ /// <summary>
+ /// A list of unrated items to block.
+ /// </summary>
BlockUnratedItems,
+
+ /// <summary>
+ /// A list of ordered views.
+ /// </summary>
OrderedViews
}
}