jellyfin/Jellyfin.Data/Enums/PreferenceKind.cs

16 lines
296 B
C#
Raw Normal View History

2020-05-02 23:56:05 +02:00
using System;
namespace Jellyfin.Data.Enums
{
public enum PreferenceKind : Int32
{
MaxParentalRating,
BlockedTags,
RemoteClientBitrateLimit,
EnabledDevices,
EnabledChannels,
EnabledFolders,
EnableContentDeletionFromFolders
}
}