Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Orders;
/// 
/// Represents a best sellers report line
///  
[Serializable]
public partial class BestsellersReportLine
{
    /// 
    /// Gets or sets the product identifier
    ///  
    public int ProductId { get; set; }
    /// 
    /// Gets or sets the product name
    ///  
    public string ProductName { get; set; }
    /// 
    /// Gets or sets the total amount
    ///  
    public decimal TotalAmount { get; set; }
    /// 
    /// Gets or sets the total quantity
    ///  
    public int TotalQuantity { get; set; }
}