* add jwt expiry * bump api version * start rework permissions * ok so in theory this compiles * update api * update api * update api * update api once more * oh apiii I hate submodules * blabla * we only live to suffer * stop reading my commit messages * nothing to see here move along * update nuget * some rework --------- Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
11 lines
223 B
C#
11 lines
223 B
C#
namespace MareSynchronos.API.Data.Enum;
|
|
|
|
[Flags]
|
|
public enum GroupPermissions
|
|
{
|
|
NoneSet = 0x0,
|
|
PreferDisableAnimations = 0x1,
|
|
PreferDisableSounds = 0x2,
|
|
DisableInvites = 0x4,
|
|
PreferDisableVFX = 0x8,
|
|
} |