22 lines
539 B
C#
22 lines
539 B
C#
namespace Nop.Core.Domain.Orders;
|
|
|
|
/// <summary>
|
|
/// Represents an "order by country" report line
|
|
/// </summary>
|
|
public partial class OrderByCountryReportLine
|
|
{
|
|
/// <summary>
|
|
/// Country identifier; null for unknown country
|
|
/// </summary>
|
|
public int? CountryId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the number of orders
|
|
/// </summary>
|
|
public int TotalOrders { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the order total summary
|
|
/// </summary>
|
|
public decimal SumOrders { get; set; }
|
|
} |