11 lines
115 B
C#
11 lines
115 B
C#
|
using System;
|
||
|
|
||
|
namespace app.Model
|
||
|
{
|
||
|
public enum AuthRoles
|
||
|
{
|
||
|
Normal = 0,
|
||
|
Admin = 1
|
||
|
}
|
||
|
}
|