From c62ec33130560fab198e985831ec6b026b34719c Mon Sep 17 00:00:00 2001 From: Polianin Nikita Date: Fri, 21 Jun 2024 21:51:23 +0300 Subject: [PATCH] feat: add user roles --- ApiDto/Common/AuthRoles.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 ApiDto/Common/AuthRoles.cs diff --git a/ApiDto/Common/AuthRoles.cs b/ApiDto/Common/AuthRoles.cs new file mode 100644 index 0000000..3d7529c --- /dev/null +++ b/ApiDto/Common/AuthRoles.cs @@ -0,0 +1,12 @@ +namespace Mirea.Api.Dto.Common; + +/// +/// An enumeration that indicates which role the user belongs to +/// +public enum AuthRoles +{ + /// + /// Administrator + /// + Admin +} \ No newline at end of file