9 lines
275 B
C#
9 lines
275 B
C#
|
|
namespace DocuMed.Common.Models.Claims;
|
|||
|
|
|
|||
|
|
public static class RoleNames
|
|||
|
|
{
|
|||
|
|
public const string Student = nameof(Student);
|
|||
|
|
public const string Teacher = nameof(Teacher);
|
|||
|
|
public const string Root = nameof(Root);
|
|||
|
|
public const string Manager = nameof(Manager);
|
|||
|
|
}
|