Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

DiscountUsageHistory.cs

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