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