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;

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

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