PIbd22_NikiforovaMV_Automob.../AutomobilePlantContracts/ViewModels/ReportCarComponentViewModel.cs
2024-05-11 13:39:57 +04:00

16 lines
416 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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();
}
}