Files
studenthousedashboard/StudentHouseDashboard/Models/UserRole.cs
2023-06-09 02:57:45 +02:00

19 lines
372 B
C#

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