16 lines
379 B
C#
16 lines
379 B
C#
namespace Core.Thalos.BuildingBlocks.Common.Constants
|
|
{
|
|
public class Roles
|
|
{
|
|
/// <summary>
|
|
/// The role for Guest.
|
|
/// </summary>
|
|
public const string Guest = "684909c4826cd093b4f61c11";
|
|
|
|
/// <summary>
|
|
/// The role for Admin.
|
|
/// </summary>
|
|
public const string Admin = "68407642ec46a0e6fe1e8ec9";
|
|
}
|
|
}
|