Webiant Logo Webiant Logo
  1. No results found.

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

GoogleAuthenticatorSettings.cs

using Nop.Core.Configuration;

namespace Nop.Plugin.MultiFactorAuth.GoogleAuthenticator;

/// 
/// Represents settings of the GoogleAuthenticatorMethod
/// 
public class GoogleAuthenticatorSettings : ISettings
{
    /// 
    /// Gets or sets the number of pixels per module
    /// 
    public int QRPixelsPerModule { get; set; }

    /// 
    /// Gets or sets business prefix
    /// 
    public string BusinessPrefix { get; set; }
}