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 model
///
public partial record ProductSpecificationModel : BaseNopModel
{
#region Properties
///
/// Gets or sets the grouped specification attribute models
///
public IList Groups { get; set; }
#endregion
#region Ctor
public ProductSpecificationModel()
{
Groups = new List();
}
#endregion
}