Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Web.Areas.Admin.Models.Discounts;
/// <summary>
/// Represents a discount product model
/// </summary>
public partial record DiscountProductModel : BaseNopEntityModel
{
#region Properties
public int ProductId { get; set; }
public string ProductName { get; set; }
public int VendorId { get; set; }
#endregion
}