Webiant Logo Webiant Logo
  1. No results found.

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

CustomerMultiFactorAuthenticationInfo.cs

namespace Nop.Services.Customers;

/// 
/// Customer multi-factor authentication info
/// 
public partial class CustomerMultiFactorAuthenticationInfo
{
    public CustomerMultiFactorAuthenticationInfo()
    {
        CustomValues = new Dictionary();
    }
    public string UserName { get; set; }

    public bool RememberMe { get; set; }

    public string ReturnUrl { get; set; }

    /// 
    /// You can store any custom value in this property
    /// 
    public Dictionary CustomValues { get; set; }
}