Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

BestCustomerReportLine.cs

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