10 lines
299 B
C#
10 lines
299 B
C#
namespace AutomobilePlantContracts.ViewModels
|
|
{
|
|
public class ReportCarComponentViewModel
|
|
{
|
|
public string CarName { get; set; } = string.Empty;
|
|
public int TotalCount { get; set; }
|
|
public List<(string Component, int Count)> Components { get; set; } = new();
|
|
}
|
|
}
|