namespace ComputerHardwareStoreContracts.ViewModels
{
	public class ReportPurchaseViewModel
	{
		public int Id { get; set; }

		public List<(string Build, int count, List<(string Component, int count)>)> Builds { get; set; } = new();

		public int TotalCount { get; set; }

		public double TotalCost { get; set; }
	}
}