jellyfin/Jellyfin.Data/Enums/PreferenceKind.cs

14 lines
273 B
C#
Raw Normal View History

2020-05-02 23:56:05 +02:00
namespace Jellyfin.Data.Enums
{
2020-05-10 16:54:41 +02:00
public enum PreferenceKind
2020-05-02 23:56:05 +02:00
{
MaxParentalRating,
BlockedTags,
RemoteClientBitrateLimit,
EnabledDevices,
EnabledChannels,
EnabledFolders,
EnableContentDeletionFromFolders
}
}