14 lines
353 B
C#
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; }
|
|
}
|
|
}
|