Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
using Nop.Web.Framework.Mvc.ModelBinding;
namespace Nop.Plugin.MultiFactorAuth.GoogleAuthenticator.Models;
///
/// Represents authentication model
///
public record AuthModel : BaseNopModel
{
public string SecretKey { get; set; }
[NopResourceDisplayName("Plugins.MultiFactorAuth.GoogleAuthenticator.Customer.VerificationToken")]
public string Code { get; set; }
public string QrCodeImageUrl { get; set; }
[NopResourceDisplayName("Plugins.MultiFactorAuth.GoogleAuthenticator.Customer.ManualSetupCode")]
public string ManualEntryQrCode { get; set; }
public string Account { get; set; }
}