You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel.SqLite/Model/UserRole.cs

15 lines
222 B

5 years ago
using System;
namespace ZeroLevel.SqLite
{
public enum UserRole
: Int32
{
Anonimus = 0,
Operator = 1,
Editor = 512,
Administrator = 1024,
SysAdmin = 4096
}
}

Powered by TurnKey Linux.