Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Customers;
using Nop.Core.Domain.Stores;
namespace Nop.Services.Discounts;
///
/// Represents a request of discount requirement validation
///
public partial class DiscountRequirementValidationRequest
{
///
/// Gets or sets the appropriate discount requirement ID (identifier)
///
public int DiscountRequirementId { get; set; }
///
/// Gets or sets the customer
///
public Customer Customer { get; set; }
///
/// Gets or sets the store
///
public Store Store { get; set; }
}