Webiant Logo Webiant Logo
  1. No results found.

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

BestsellersReportLine.cs

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