mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
29 lines
680 B
C#
29 lines
680 B
C#
using System;
|
|
|
|
namespace Jellyfin.Data.Enums
|
|
{
|
|
public enum PermissionKind : Int32
|
|
{
|
|
IsAdministrator,
|
|
IsHidden,
|
|
IsDisabled,
|
|
BlockUnrateditems,
|
|
EnbleSharedDeviceControl,
|
|
EnableRemoteAccess,
|
|
EnableLiveTvManagement,
|
|
EnableLiveTvAccess,
|
|
EnableMediaPlayback,
|
|
EnableAudioPlaybackTranscoding,
|
|
EnableVideoPlaybackTranscoding,
|
|
EnableContentDeletion,
|
|
EnableContentDownloading,
|
|
EnableSyncTranscoding,
|
|
EnableMediaConversion,
|
|
EnableAllDevices,
|
|
EnableAllChannels,
|
|
EnableAllFolders,
|
|
EnablePublicSharing,
|
|
AccessSchedules
|
|
}
|
|
}
|