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 combination model
///
public partial record ProductCombinationModel : BaseNopModel
{
#region Properties
///
/// Gets or sets the attributes
///
public IList Attributes { get; set; }
///
/// Gets or sets a value indicating whether to the combination have stock
///
public bool InStock { get; set; }
#endregion
#region Ctor
public ProductCombinationModel()
{
Attributes = new List();
}
#endregion
}