FruitBank/Presentation/Nop.Web/Areas/Admin/Models/Customers/AddProductToCustomerRoleMod...

15 lines
341 B
C#

using Nop.Web.Framework.Models;
namespace Nop.Web.Areas.Admin.Models.Customers;
/// <summary>
/// Represents a product model to add to the customer role
/// </summary>
public partial record AddProductToCustomerRoleModel : BaseNopEntityModel
{
#region Properties
public int AssociatedToProductId { get; set; }
#endregion
}