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 attribute model
///
public partial record ProductAttributeModel : BaseNopModel
{
#region Properties
///
/// Gets or sets the attribute id
///
public int Id { get; set; }
///
/// Gets or sets the value IDs of the attribute
///
public IList ValueIds { get; set; }
#endregion
#region Ctor
public ProductAttributeModel()
{
ValueIds = new List();
}
#endregion
}