namespace Nop.Core.Domain.Discounts; /// /// Represents a discount usage history entry /// public partial class DiscountUsageHistory : BaseEntity { /// /// Gets or sets the discount identifier /// public int DiscountId { get; set; } /// /// Gets or sets the order identifier /// public int OrderId { get; set; } /// /// Gets or sets the date and time of instance creation /// public DateTime CreatedOnUtc { get; set; } }