Webiant Logo Webiant Logo
  1. No results found.

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

MultiFactorAuthenticationSettings.cs

using Nop.Core.Configuration;

namespace Nop.Core.Domain.Customers;

/// 
/// Multi-factor authentication settings
/// 
public partial class MultiFactorAuthenticationSettings : ISettings
{
    #region Ctor

    public MultiFactorAuthenticationSettings()
    {
        ActiveAuthenticationMethodSystemNames = new List();
    }

    #endregion

    /// 
    /// Gets or sets system names of active multi-factor authentication methods
    /// 
    public List ActiveAuthenticationMethodSystemNames { get; set; }

    /// 
    /// Gets or sets a value indicating whether to force multi-factor authentication
    /// 
    public bool ForceMultifactorAuthentication { get; set; }
}