MireaBackend/ApiDto/Common/OAuthAction.cs

17 lines
392 B
C#
Raw Normal View History

2024-12-26 16:14:55 +03:00
namespace Mirea.Api.Dto.Common;
/// <summary>
/// Defines the actions that can be performed with an OAuth token.
/// </summary>
public enum OAuthAction
{
/// <summary>
/// The action to log in the user using the provided OAuth token.
/// </summary>
Login,
/// <summary>
/// The action to bind an OAuth provider to the user's account.
/// </summary>
Bind
}