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