17 lines
433 B
C#
17 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";
|
||
|
}
|