using Nop.Web.Framework.Models; using Nop.Web.Framework.Mvc.ModelBinding; namespace Nop.Web.Areas.Admin.Models.Customers; /// /// Represents a customer attribute value model /// public partial record CustomerAttributeValueModel : BaseNopEntityModel, ILocalizedModel { #region Ctor public CustomerAttributeValueModel() { Locales = new List(); } #endregion #region Properties public int AttributeId { get; set; } [NopResourceDisplayName("Admin.Customers.CustomerAttributes.Values.Fields.Name")] public string Name { get; set; } [NopResourceDisplayName("Admin.Customers.CustomerAttributes.Values.Fields.IsPreSelected")] public bool IsPreSelected { get; set; } [NopResourceDisplayName("Admin.Customers.CustomerAttributes.Values.Fields.DisplayOrder")] public int DisplayOrder { get; set; } public IList Locales { get; set; } #endregion } public partial record CustomerAttributeValueLocalizedModel : ILocalizedLocaleModel { public int LanguageId { get; set; } [NopResourceDisplayName("Admin.Customers.CustomerAttributes.Values.Fields.Name")] public string Name { get; set; } }