12 lines
224 B
C#
12 lines
224 B
C#
namespace Mirea.Api.Dto.Common;
|
|
|
|
/// <summary>
|
|
/// An enumeration that indicates which role the user belongs to
|
|
/// </summary>
|
|
public enum AuthRoles
|
|
{
|
|
/// <summary>
|
|
/// Administrator
|
|
/// </summary>
|
|
Admin
|
|
} |