using OliverBooth.Services;
namespace OliverBooth.Data.Web;
///
/// An enumeration of possible results for .
///
public enum MfaRequestResult
{
///
/// The request was successful.
///
Success,
///
/// The wrong code was entered.
///
InvalidTotp,
///
/// The MFA token has expired.
///
TokenExpired,
///
/// Too many attempts were made by the user.
///
TooManyAttempts,
}