Core.Thalos.BuildingBlocks/Core.Cerberos.Adapters/Common/Constants/Roles.cs
2025-07-15 13:52:09 -06:00

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";
}
}