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