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