Webiant Logo Webiant Logo
  1. No results found.

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

GiftCardUsageHistory.cs

namespace Nop.Core.Domain.Orders;

/// 
/// Represents a gift card usage history entry
/// 
public partial class GiftCardUsageHistory : BaseEntity
{
    /// 
    /// Gets or sets the gift card identifier
    /// 
    public int GiftCardId { get; set; }

    /// 
    /// Gets or sets the order identifier
    /// 
    public int UsedWithOrderId { get; set; }

    /// 
    /// Gets or sets the used value (amount)
    /// 
    public decimal UsedValue { get; set; }

    /// 
    /// Gets or sets the date and time of instance creation
    /// 
    public DateTime CreatedOnUtc { get; set; }
}