Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Web.Models.Catalog;
///
/// Represents a specification attribute model
///
public partial record ProductSpecificationAttributeModel : BaseNopEntityModel
{
#region Properties
///
/// Gets or sets the name
///
public string Name { get; set; }
///
/// Gets or sets the values
///
public IList Values { get; set; }
#endregion
#region Ctor
public ProductSpecificationAttributeModel()
{
Values = new List();
}
#endregion
}