Files
hcs/Hcs.WebApp/Data/Identity/AppRole.cs

14 lines
353 B
C#

using Microsoft.AspNetCore.Identity;
namespace Hcs.WebApp.Data.Identity
{
public class AppRole : IdentityRole
{
public const string ADMINISTRATOR_TYPE = "Administrator";
public const string OPERATOR_TYPE = "Operator";
public const string OBSERVER_TYPE = "Observer";
public int Priority { get; set; }
}
}