using Nop.Web.Framework.Models; using Nop.Web.Framework.Mvc.ModelBinding; namespace Nop.Web.Areas.Admin.Models.Catalog; /// /// Represents an add specification attribute localized model /// public partial record AddSpecificationAttributeLocalizedModel : ILocalizedLocaleModel { public int LanguageId { get; set; } [NopResourceDisplayName("Admin.Catalog.Products.SpecificationAttributes.Fields.CustomValue")] public string ValueRaw { get; set; } [NopResourceDisplayName("Admin.Catalog.Products.SpecificationAttributes.Fields.CustomValue")] public string Value { get; set; } }