//
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
//
namespace Astral.ApiServer.Constants;
///
/// Available grant types for auth token requests.
///
public enum OAuthGrantType
{
///
/// Password grant type.
///
Password
}