chore: add user entity and role entity

This commit is contained in:
mahyargdz
2025-01-19 11:42:15 +03:30
parent 583fa52160
commit 58c9bfa912
6 changed files with 71 additions and 8 deletions
+6
View File
@@ -0,0 +1,6 @@
export enum RoleEnum {
SUPER_ADMIN = "super_admin",
ADMIN = "admin",
USER = "user",
VISITOR = "visitor",
}