Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Discounts;
/// <summary>
/// Represents a discount usage history entry
/// </summary>
public partial class DiscountUsageHistory : BaseEntity
{
/// <summary>
/// Gets or sets the discount identifier
/// </summary>
public int DiscountId { get; set; }
/// <summary>
/// Gets or sets the order identifier
/// </summary>
public int OrderId { get; set; }
/// <summary>
/// Gets or sets the date and time of instance creation
/// </summary>
public DateTime CreatedOnUtc { get; set; }
}