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

17 lines
389 B
C#
Raw Permalink Normal View History

2024-12-14 17:31:17 +01:00
// <copyright file="OAuthGrantType.cs" company="alveus.dev">
2024-12-11 23:12:53 +01:00
// 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>
2024-12-14 17:31:17 +01:00
public enum OAuthGrantType
2024-12-11 23:12:53 +01:00
{
/// <summary>
/// Password grant type.
/// </summary>
2024-12-14 17:31:17 +01:00
Password
2024-12-11 23:12:53 +01:00
}