aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon/Prepo/Types/PrepoServicePermissionLevel.cs
blob: 7a8073549d871443df89758938478bc943a69700 (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace Ryujinx.Horizon.Prepo.Types
{
    enum PrepoServicePermissionLevel
    {
        Admin = -1,
        User = 1,
        System = 2,
        Manager = 6,
        Debug = unchecked((int)0x80000006),
    }
}