FruitBank/Plugins/Nop.Plugin.MultiFactorAuth..../Models/GoogleAuthenticatorModel.cs

13 lines
319 B
C#

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; }
}