using Nop.Web.Framework.Models; namespace Nop.Plugin.MultiFactorAuth.GoogleAuthenticator.Models; /// /// Represents GoogleAuthenticator model /// public record GoogleAuthenticatorModel : BaseNopEntityModel { public string Customer { get; set; } public string SecretKey { get; set; } }