PIbd-21_Kouvshinoff_T._A._A.../AutomobilePlant/AutomobilePlantContracts/ViewModels/ReportCarComponentViewModel.cs

10 lines
299 B
C#
Raw Normal View History

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();
}
}