Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Web.Models.Catalog;
///
/// Represents a product specification attribute value model
///
public partial record ProductSpecificationAttributeValueModel : BaseNopModel
{
#region Properties
///
/// Gets or sets the attribute type id
///
public int AttributeTypeId { get; set; }
///
/// Gets or sets the value raw. This value is already HTML encoded
///
public string ValueRaw { get; set; }
///
/// Gets or sets the option color (if specified). Used to display color squares
///
public string ColorSquaresRgb { get; set; }
#endregion
}