Try your search with a different keyword or use * as a wildcard.
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; }
}