FruitBank/Presentation/Nop.Web/Areas/Admin/Models/Catalog/AddSpecificationAttributeLo...

18 lines
622 B
C#

using Nop.Web.Framework.Models;
using Nop.Web.Framework.Mvc.ModelBinding;
namespace Nop.Web.Areas.Admin.Models.Catalog;
/// <summary>
/// Represents an add specification attribute localized model
/// </summary>
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; }
}