Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Catalog;
using Nop.Web.Framework.Models;
namespace Nop.Web.Models.Customer;
public partial record CustomerAttributeModel : BaseNopEntityModel
{
public CustomerAttributeModel()
{
Values = new List();
}
public string Name { get; set; }
public bool IsRequired { get; set; }
///
/// Default value for textboxes
///
public string DefaultValue { get; set; }
public AttributeControlType AttributeControlType { get; set; }
public IList Values { get; set; }
}
public partial record CustomerAttributeValueModel : BaseNopEntityModel
{
public string Name { get; set; }
public bool IsPreSelected { get; set; }
}