astral-api/Astral.ApiServer/Constants/OAuthGrantTypes.cs

17 lines
433 B
C#
Raw Normal View History

2024-12-11 23:12:53 +01:00
// <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";
}