PIbd-21_Ihonkina_E.S._Preca.../PrecastConcretePlantContracts/ViewModels/ReportReinforcedComponentViewModel.cs
Катя Ихонкина ec4d190d0a лр4 коммит2
2023-03-22 20:33:00 +04:00

16 lines
435 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantContracts.ViewModels
{
public class ReportReinforcedComponentViewModel
{
public string ReinforcedName { get; set; } = string.Empty;
public int TotalCount { get; set; }
public List<(string Component, int Count)> Components { get; set; } = new();
}
}