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; } }