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;
/// <summary>
/// Represents a request of discount requirement validation
/// </summary>
public partial class DiscountRequirementValidationRequest
{
/// <summary>
/// Gets or sets the appropriate discount requirement ID (identifier)
/// </summary>
public int DiscountRequirementId { get; set; }
/// <summary>
/// Gets or sets the customer
/// </summary>
public Customer Customer { get; set; }
/// <summary>
/// Gets or sets the store
/// </summary>
public Store Store { get; set; }
}