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 manufacturer model to add to the discount
/// </summary>
public partial record AddManufacturerToDiscountModel : BaseNopModel
{
#region Ctor
public AddManufacturerToDiscountModel()
{
SelectedManufacturerIds = new List<int>();
}
#endregion
#region Properties
public int DiscountId { get; set; }
public IList<int> SelectedManufacturerIds { get; set; }
#endregion
}