Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Customers;
/// <summary>
/// Represents a best customer report line
/// </summary>
public partial class BestCustomerReportLine
{
/// <summary>
/// Gets or sets the customer identifier
/// </summary>
public int CustomerId { get; set; }
/// <summary>
/// Gets or sets the order total
/// </summary>
public decimal OrderTotal { get; set; }
/// <summary>
/// Gets or sets the order count
/// </summary>
public int OrderCount { get; set; }
}