using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Biskilog_Accounting.Shared.CustomModels
{
public class MostPurchasedItem
{
///
/// Specifies the id of the product
///
public string ProductId { get; set; } = string.Empty;
///
/// Specifies the name of the product
///
public string ProductName { get; set; } = string.Empty;
///
/// The total revenue generated from the sale
///
public decimal? Revenue { get; set; }
///
/// This is the number of times the item has been sold
///
public int? NbrTimesSold { get; set; }
}
}