mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-14 20:54:05 +08:00
11 lines
207 B
C#
11 lines
207 B
C#
namespace BuildingBlocks.Constants;
|
|
|
|
public static class IdentityConstant
|
|
{
|
|
public static class Role
|
|
{
|
|
public const string Admin = "admin";
|
|
public const string User = "user";
|
|
}
|
|
}
|