Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

GoogleAuthenticatorRecord.cs

using Nop.Core;

namespace Nop.Plugin.MultiFactorAuth.GoogleAuthenticator.Domains;

/// 
/// Represents a  Google Authenticator configuration
/// 
public class GoogleAuthenticatorRecord : BaseEntity
{
    /// 
    /// Gets or sets a customer identifier
    /// 
    public string Customer { get; set; }

    /// 
    /// Gets or sets a SecretKey identifier
    /// 
    public string SecretKey { get; set; }
}