8 lines
181 B
C#
8 lines
181 B
C#
namespace Domain;
|
|
|
|
public static class UserRoles
|
|
{
|
|
public const string Admin = "Admin";
|
|
public const string Doctor = "Doctor";
|
|
public const string Patient = "Patient";
|
|
} |