32 lines
603 B
C#
32 lines
603 B
C#
using Nop.Web.Framework.Models;
|
|
|
|
namespace Nop.Web.Models.Catalog;
|
|
|
|
/// <summary>
|
|
/// Represents a product attribute model
|
|
/// </summary>
|
|
public partial record ProductAttributeModel : BaseNopModel
|
|
{
|
|
#region Properties
|
|
|
|
/// <summary>
|
|
/// Gets or sets the attribute id
|
|
/// </summary>
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the value IDs of the attribute
|
|
/// </summary>
|
|
public IList<int> ValueIds { get; set; }
|
|
|
|
#endregion
|
|
|
|
#region Ctor
|
|
|
|
public ProductAttributeModel()
|
|
{
|
|
ValueIds = new List<int>();
|
|
}
|
|
|
|
#endregion
|
|
} |