Webiant Logo Webiant Logo
  1. No results found.

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

AddProductToCustomerRoleModel.cs

using Nop.Web.Framework.Models;

namespace Nop.Web.Areas.Admin.Models.Customers;

/// 
/// Represents a product model to add to the customer role 
/// 
public partial record AddProductToCustomerRoleModel : BaseNopEntityModel
{
    #region Properties

    public int AssociatedToProductId { get; set; }

    #endregion
}