Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Plugin.MultiFactorAuth.GoogleAuthenticator.Models;
/// <summary>
/// Represents GoogleAuthenticator model
/// </summary>
public record GoogleAuthenticatorModel : BaseNopEntityModel
{
public string Customer { get; set; }
public string SecretKey { get; set; }
}