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;

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