// // Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License. // namespace Astral.ApiServer.Constants; /// /// Available grant types for auth token requests. /// public static class OAuthGrantTypes { /// /// Password grant type. /// public const string Password = "password"; }