namespace Nop.Core.Domain.Customers; /// /// Represents a best customer report line /// public partial class BestCustomerReportLine { /// /// Gets or sets the customer identifier /// public int CustomerId { get; set; } /// /// Gets or sets the order total /// public decimal OrderTotal { get; set; } /// /// Gets or sets the order count /// public int OrderCount { get; set; } }