Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
using Nop.Web.Framework.Mvc.ModelBinding;
namespace Nop.Web.Areas.Admin.Models.Customers;
///
/// Represents a customer attribute model
///
public partial record CustomerAttributeModel : BaseNopEntityModel, ILocalizedModel
{
#region Ctor
public CustomerAttributeModel()
{
Locales = new List();
CustomerAttributeValueSearchModel = new CustomerAttributeValueSearchModel();
}
#endregion
#region Properties
[NopResourceDisplayName("Admin.Customers.CustomerAttributes.Fields.Name")]
public string Name { get; set; }
[NopResourceDisplayName("Admin.Customers.CustomerAttributes.Fields.IsRequired")]
public bool IsRequired { get; set; }
[NopResourceDisplayName("Admin.Customers.CustomerAttributes.Fields.AttributeControlType")]
public int AttributeControlTypeId { get; set; }
[NopResourceDisplayName("Admin.Customers.CustomerAttributes.Fields.AttributeControlType")]
public string AttributeControlTypeName { get; set; }
[NopResourceDisplayName("Admin.Customers.CustomerAttributes.Fields.DisplayOrder")]
public int DisplayOrder { get; set; }
public IList Locales { get; set; }
public CustomerAttributeValueSearchModel CustomerAttributeValueSearchModel { get; set; }
#endregion
}
public partial record CustomerAttributeLocalizedModel : ILocalizedLocaleModel
{
public int LanguageId { get; set; }
[NopResourceDisplayName("Admin.Customers.CustomerAttributes.Fields.Name")]
public string Name { get; set; }
}