MireaBackend/ApiDto/Common/AuthRoles.cs

12 lines
224 B
C#
Raw Normal View History

2024-06-21 21:51:23 +03:00
namespace Mirea.Api.Dto.Common;
/// <summary>
/// An enumeration that indicates which role the user belongs to
/// </summary>
public enum AuthRoles
{
/// <summary>
/// Administrator
/// </summary>
Admin
}