MireaBackend/ApiDto/Common/AuthRoles.cs
2024-06-21 21:51:23 +03:00

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
}