14 lines
204 B
C#
14 lines
204 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Traffic.Data.Enums
|
|
{
|
|
public enum Auth
|
|
{
|
|
Admin = 1,
|
|
User = 2,
|
|
}
|
|
}
|