16 lines
296 B
C#
16 lines
296 B
C#
|
using System;
|
||
|
|
||
|
namespace Jellyfin.Data.Enums
|
||
|
{
|
||
|
public enum PreferenceKind : Int32
|
||
|
{
|
||
|
MaxParentalRating,
|
||
|
BlockedTags,
|
||
|
RemoteClientBitrateLimit,
|
||
|
EnabledDevices,
|
||
|
EnabledChannels,
|
||
|
EnabledFolders,
|
||
|
EnableContentDeletionFromFolders
|
||
|
}
|
||
|
}
|