Webiant Logo Webiant Logo
  1. No results found.

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

OrderAverageReportLine.cs

namespace Nop.Core.Domain.Orders;

/// 
/// Represents an order average report line
/// 
public partial class OrderAverageReportLine
{
    /// 
    /// Gets or sets the count
    /// 
    public int CountOrders { get; set; }

    /// 
    /// Gets or sets the shipping summary (excluding tax)
    /// 
    public decimal SumShippingExclTax { get; set; }

    /// 
    /// Gets or sets the payment fee summary (excluding tax)
    /// 
    public decimal OrderPaymentFeeExclTaxSum { get; set; }

    /// 
    /// Gets or sets the tax summary
    /// 
    public decimal SumTax { get; set; }

    /// 
    /// Gets or sets the order total summary
    /// 
    public decimal SumOrders { get; set; }

    /// 
    /// Gets or sets the refunded amount summary
    /// 
    public decimal SumRefundedAmount { get; set; }
}