PreferenceKind.cs 273 B

12345678910111213
  1. namespace Jellyfin.Data.Enums
  2. {
  3. public enum PreferenceKind
  4. {
  5. MaxParentalRating,
  6. BlockedTags,
  7. RemoteClientBitrateLimit,
  8. EnabledDevices,
  9. EnabledChannels,
  10. EnabledFolders,
  11. EnableContentDeletionFromFolders
  12. }
  13. }