Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

IDiscountSupportedModel.cs

using Microsoft.AspNetCore.Mvc.Rendering;

namespace Nop.Web.Framework.Models;

/// 
/// Represents a discount supported model
/// 
public partial interface IDiscountSupportedModel
{
    #region Properties

    /// 
    /// Gets or sets identifiers of the selected discounts
    /// 
    IList SelectedDiscountIds { get; set; }

    /// 
    /// Gets or sets items for the all available discounts
    /// 
    IList AvailableDiscounts { get; set; }

    #endregion
}