23 lines
787 B
C#
23 lines
787 B
C#
using Nop.Web.Framework.Models;
|
|
using Nop.Web.Framework.Mvc.ModelBinding;
|
|
|
|
namespace Nop.Web.Areas.Admin.Models.Customers;
|
|
|
|
/// <summary>
|
|
/// Represents a customer associated external authentication model
|
|
/// </summary>
|
|
public partial record CustomerAssociatedExternalAuthModel : BaseNopEntityModel
|
|
{
|
|
#region Properties
|
|
|
|
[NopResourceDisplayName("Admin.Customers.Customers.AssociatedExternalAuth.Fields.Email")]
|
|
public string Email { get; set; }
|
|
|
|
[NopResourceDisplayName("Admin.Customers.Customers.AssociatedExternalAuth.Fields.ExternalIdentifier")]
|
|
public string ExternalIdentifier { get; set; }
|
|
|
|
[NopResourceDisplayName("Admin.Customers.Customers.AssociatedExternalAuth.Fields.AuthMethodName")]
|
|
public string AuthMethodName { get; set; }
|
|
|
|
#endregion
|
|
} |