astral-api/Astral.ApiServer/Constants/OAuthGrantTypes.cs
2024-12-11 22:12:53 +00:00

16 lines
433 B
C#

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