namespace PARR.Constants
{
///
/// Роли ПАРР
///
public static class ParrRoles
{
// Подробнее о авторизации в документации в разделе Авторизация
private const string Base = Administrator.Role + ",";
///
/// Роль: Администратор
///
public static class Administrator
{
public const string Role = "administrator";
public const string Description = "Администратор";
}
///
/// Роль: agent Агент
///
public static class Agent
{
public const string Role = "agent";
public const string RoleOrAdmin = Base + Role;
public const string Description = "Агент";
}
///
/// Роль: espp-robot Робот ЕСПП
///
public static class EsppRobot
{
public const string Role = "espp-robot";
public const string RoleOrAdmin = Base + Role;
public const string Description = "Робот ЕСПП";
}
}
}