Files
studenthousedashboard/StudentHouseDashboard/HouseData/Models/UserRole.cs
2023-05-05 00:35:35 +02:00

18 lines
374 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
namespace StudentHouseDashboard.Models
{
public enum UserRole
{
[Display(Name = "Tenant")]
TENANT,
[Display(Name = "Manager")]
MANAGER,
[Display(Name = "Administrator")]
ADMIN
}
}