Ryujinx/Ryujinx.HLE/HOS/Services/Prepo/Types/PrepoServicePermissionLevel.cs

10 lines
180 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Services.Prepo
{
enum PrepoServicePermissionLevel
{
Admin = -1,
User = 1,
System = 2,
Manager = 6
}
}