25 lines
526 B
C#
25 lines
526 B
C#
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
|
|
} |