FruitBank/Libraries/Nop.Core/Domain/Discounts/DiscountUsageHistory.cs

22 lines
558 B
C#

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; }
}