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