Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Web.Areas.Admin.Models.Discounts;
///
/// Represents a manufacturer model to add to the discount
///
public partial record AddManufacturerToDiscountModel : BaseNopModel
{
#region Ctor
public AddManufacturerToDiscountModel()
{
SelectedManufacturerIds = new List();
}
#endregion
#region Properties
public int DiscountId { get; set; }
public IList SelectedManufacturerIds { get; set; }
#endregion
}