//
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
//
namespace Astral.Services.Constants;
///
/// Collection of claim ids.
///
public static class ClaimIds
{
///
/// User Id claim.
///
public const string UserId = "user-id";
///
/// Username claim.
///
public const string UserName = "user-name";
///
/// User Role claim.
///
public const string Role = "role";
///
/// Token scope.
///
public const string Scope = "scope";
}