jellyfin/Jellyfin.Data/Enums/PreferenceKind.cs

74 lines
1.6 KiB
C#
Raw Normal View History

2020-05-02 23:56:05 +02:00
namespace Jellyfin.Data.Enums
{
2020-05-20 01:44:55 +02:00
/// <summary>
/// The types of user preferences.
/// </summary>
2020-05-13 04:10:35 +02:00
public enum PreferenceKind
2020-05-02 23:56:05 +02:00
{
2020-05-20 01:44:55 +02:00
/// <summary>
/// A list of blocked tags.
/// </summary>
2020-05-20 15:36:12 +02:00
BlockedTags = 0,
2020-05-20 01:44:55 +02:00
/// <summary>
/// A list of blocked channels.
/// </summary>
2020-05-20 15:36:12 +02:00
BlockedChannels = 1,
2020-05-20 01:44:55 +02:00
/// <summary>
/// A list of blocked media folders.
/// </summary>
2020-05-20 15:36:12 +02:00
BlockedMediaFolders = 2,
2020-05-20 01:44:55 +02:00
/// <summary>
/// A list of enabled devices.
/// </summary>
2020-05-20 15:36:12 +02:00
EnabledDevices = 3,
2020-05-20 01:44:55 +02:00
/// <summary>
/// A list of enabled channels.
2020-05-20 01:44:55 +02:00
/// </summary>
2020-05-20 15:36:12 +02:00
EnabledChannels = 4,
2020-05-20 01:44:55 +02:00
/// <summary>
/// A list of enabled folders.
/// </summary>
2020-05-20 15:36:12 +02:00
EnabledFolders = 5,
2020-05-20 01:44:55 +02:00
/// <summary>
/// A list of folders to allow content deletion from.
/// </summary>
2020-05-20 15:36:12 +02:00
EnableContentDeletionFromFolders = 6,
2020-05-20 01:44:55 +02:00
/// <summary>
/// A list of latest items to exclude.
/// </summary>
2020-05-20 15:36:12 +02:00
LatestItemExcludes = 7,
2020-05-20 01:44:55 +02:00
/// <summary>
/// A list of media to exclude.
/// </summary>
2020-05-20 15:36:12 +02:00
MyMediaExcludes = 8,
2020-05-20 01:44:55 +02:00
/// <summary>
/// A list of grouped folders.
/// </summary>
2020-05-20 15:36:12 +02:00
GroupedFolders = 9,
2020-05-20 01:44:55 +02:00
/// <summary>
/// A list of unrated items to block.
/// </summary>
2020-05-20 15:36:12 +02:00
BlockUnratedItems = 10,
2020-05-20 01:44:55 +02:00
/// <summary>
/// A list of ordered views.
/// </summary>
OrderedViews = 11,
/// <summary>
/// A list of allowed tags.
/// </summary>
AllowedTags = 12
2020-05-02 23:56:05 +02:00
}
}