PIbd-22_Safiulova_K.N._Airc.../AircraftPlant/AircraftPlantContracts»/ViewModels/ReportPlaneComponentViewModel.cs
2024-04-07 00:23:58 +04:00

16 lines
407 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AircraftPlantContracts.ViewModels
{
public class ReportPlaneComponentViewModel
{
public string PlaneName { get; set; } = string.Empty;
public int TotalCount { get; set; }
public List<Tuple<string, int>> Components { get; set; } = new();
}
}