12 lines
297 B
C#
12 lines
297 B
C#
|
namespace ComputerHardwareContracts.ViewModels
|
|||
|
{
|
|||
|
public class ReportComponentsViewModel
|
|||
|
{
|
|||
|
public string ComponentName { get; set; } = string.Empty;
|
|||
|
|
|||
|
public int TotalCount { get; set; }
|
|||
|
|
|||
|
public List<Tuple<string, int>> GoodOrBuilds { get; set; } = new();
|
|||
|
}
|
|||
|
}
|