Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ProductSpecificationAttributeGroupModel.cs

using Nop.Web.Framework.Models;

namespace Nop.Web.Models.Catalog;

/// 
/// Represents a grouped product specification attribute model
/// 
public partial record ProductSpecificationAttributeGroupModel : BaseNopEntityModel
{
    #region Properties

    /// 
    /// Gets or sets the specification attribute group name
    /// 
    public string Name { get; set; }

    /// 
    /// Gets or sets the specification attribute group attributes
    /// 
    public IList Attributes { get; set; }

    #endregion

    #region Ctor

    public ProductSpecificationAttributeGroupModel()
    {
        Attributes = new List();
    }

    #endregion
}