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 specification attribute value filter model
/// </summary>
public partial record SpecificationAttributeValueFilterModel : BaseNopEntityModel
{
#region Properties
/// <summary>
/// Gets or sets the specification attribute option name
/// </summary>
public string Name { get; set; }
/// <summary>
/// Gets or sets the specification attribute option color (RGB)
/// </summary>
public string ColorSquaresRgb { get; set; }
/// <summary>
/// Gets or sets the value indicating whether the value is selected
/// </summary>
public bool Selected { get; set; }
#endregion
}