Mango.Nop.Libraries/Nop.Core/Domain/Customers/BestCustomerReportLine.cs

22 lines
513 B
C#

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