aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Enums/PreferenceKind.cs
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2020-05-20 09:36:12 -0400
committerPatrick Barron <barronpm@gmail.com>2020-05-20 10:04:00 -0400
commit623dcde65c25e6d7f64f6e9fc354208b708c17b8 (patch)
tree4bcddb789a1f8c2d8d6543ac1483b1f742eea183 /Jellyfin.Data/Enums/PreferenceKind.cs
parent64c14beb27348daf0f440b5b1bc31ccb2987f9ff (diff)
Manually specify enum values
Diffstat (limited to 'Jellyfin.Data/Enums/PreferenceKind.cs')
-rw-r--r--Jellyfin.Data/Enums/PreferenceKind.cs24
1 files changed, 12 insertions, 12 deletions
diff --git a/Jellyfin.Data/Enums/PreferenceKind.cs b/Jellyfin.Data/Enums/PreferenceKind.cs
index e0e9cfe048..de8eecc734 100644
--- a/Jellyfin.Data/Enums/PreferenceKind.cs
+++ b/Jellyfin.Data/Enums/PreferenceKind.cs
@@ -8,61 +8,61 @@ namespace Jellyfin.Data.Enums
/// <summary>
/// A list of blocked tags.
/// </summary>
- BlockedTags,
+ BlockedTags = 0,
/// <summary>
/// A list of blocked channels.
/// </summary>
- BlockedChannels,
+ BlockedChannels = 1,
/// <summary>
/// A list of blocked media folders.
/// </summary>
- BlockedMediaFolders,
+ BlockedMediaFolders = 2,
/// <summary>
/// A list of enabled devices.
/// </summary>
- EnabledDevices,
+ EnabledDevices = 3,
/// <summary>
/// A list of enabled channels
/// </summary>
- EnabledChannels,
+ EnabledChannels = 4,
/// <summary>
/// A list of enabled folders.
/// </summary>
- EnabledFolders,
+ EnabledFolders = 5,
/// <summary>
/// A list of folders to allow content deletion from.
/// </summary>
- EnableContentDeletionFromFolders,
+ EnableContentDeletionFromFolders = 6,
/// <summary>
/// A list of latest items to exclude.
/// </summary>
- LatestItemExcludes,
+ LatestItemExcludes = 7,
/// <summary>
/// A list of media to exclude.
/// </summary>
- MyMediaExcludes,
+ MyMediaExcludes = 8,
/// <summary>
/// A list of grouped folders.
/// </summary>
- GroupedFolders,
+ GroupedFolders = 9,
/// <summary>
/// A list of unrated items to block.
/// </summary>
- BlockUnratedItems,
+ BlockUnratedItems = 10,
/// <summary>
/// A list of ordered views.
/// </summary>
- OrderedViews
+ OrderedViews = 11
}
}