Webiant Logo Webiant Logo
  1. No results found.

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

OrderByCountryReportLine.cs

namespace Nop.Core.Domain.Orders;

/// 
/// Represents an "order by country" report line
/// 
public partial class OrderByCountryReportLine
{
    /// 
    /// Country identifier; null for unknown country
    /// 
    public int? CountryId { get; set; }

    /// 
    /// Gets or sets the number of orders
    /// 
    public int TotalOrders { get; set; }

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