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;

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