MireaBackend/ApiDto/Common/TwoFactorAuthentication.cs

17 lines
423 B
C#
Raw Normal View History

2024-11-02 00:50:10 +03:00
namespace Mirea.Api.Dto.Common;
/// <summary>
/// Represents the steps required after a login attempt.
/// </summary>
2024-11-02 00:50:10 +03:00
public enum TwoFactorAuthentication
{
/// <summary>
/// No additional steps required; the user is successfully logged in.
/// </summary>
None,
/// <summary>
/// TOTP (Time-based One-Time Password) is required for additional verification.
/// </summary>
TotpRequired,
2025-02-11 15:36:55 +03:00
}