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 grouped product specification attribute model
/// </summary>
public partial record ProductSpecificationAttributeGroupModel : BaseNopEntityModel
{
#region Properties
/// <summary>
/// Gets or sets the specification attribute group name
/// </summary>
public string Name { get; set; }
/// <summary>
/// Gets or sets the specification attribute group attributes
/// </summary>
public IList<ProductSpecificationAttributeModel> Attributes { get; set; }
#endregion
#region Ctor
public ProductSpecificationAttributeGroupModel()
{
Attributes = new List<ProductSpecificationAttributeModel>();
}
#endregion
}