Webiant Logo Webiant Logo
  1. No results found.

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

SalesSummaryReportLine.cs

namespace Nop.Core.Domain.Orders;

/// 
/// Represents sales summary report line
/// 
public partial class SalesSummaryReportLine
{
    public string Summary { get; set; }

    public DateTime SummaryDate { get; set; }

    public int NumberOfOrders { get; set; }

    public decimal Profit { get; set; }
    public string ProfitStr { get; set; }

    public string Shipping { get; set; }

    public string Tax { get; set; }

    public string OrderTotal { get; set; }

    public int SummaryType { get; set; }
}