Page numbers fixed, Register with roles not shown to guests

This commit is contained in:
Dimitar Byalkov
2023-05-05 00:35:35 +02:00
parent eea8cf9aac
commit 81109f3d6c
4 changed files with 25 additions and 8 deletions

View File

@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
@@ -7,8 +8,11 @@ namespace StudentHouseDashboard.Models
{
public enum UserRole
{
[Display(Name = "Tenant")]
TENANT,
[Display(Name = "Manager")]
MANAGER,
[Display(Name = "Administrator")]
ADMIN
}
}