16 lines
389 B
C#
16 lines
389 B
C#
// <copyright file="OAuthGrantType.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 enum OAuthGrantType
|
|
{
|
|
/// <summary>
|
|
/// Password grant type.
|
|
/// </summary>
|
|
Password
|
|
}
|