// // Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License. // namespace Astral.ApiServer.Constants; /// /// Collection of API error codes. /// public static class ApiErrorCodes { /// /// Attempted to authenticate with an unsupported grant type. /// public const string UnsupportedGrantType = "unsupported-grant-type"; /// /// Attempted to authenticate with an unsupported token scope. /// public const string UnsupportedTokenScope = "unsupported-token-scope"; }