using Nop.Web.Framework.Models; using Nop.Web.Framework.Mvc.ModelBinding; namespace Nop.Web.Areas.Admin.Models.Customers; /// /// Represents a customer associated external authentication model /// 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 }