14 lines
322 B
C#
14 lines
322 B
C#
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; }
|
|
}
|
|
}
|