Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

MultiFactorAuthenticationType.cs

namespace Nop.Services.Authentication.MultiFactor;

public enum MultiFactorAuthenticationType
{
    /// <summary>
    /// TOTP (Time-based One-time Password Algorithm) by "Microsoft Authenticator" App or "Google Authenticator" App etc.
    /// </summary>
    ApplicationVerification = 0,

    /// <summary>
    /// SMS verification
    /// </summary>
    SMSVerification = 1,

    /// <summary>
    /// Email verification
    /// </summary>
    EmailVerification = 2,
}