PIbd-22-Stroev-V.M.-Plumbin.../PlumbingRepair/PlumbingRepairContracts/ViewModels/ReportWorkComponentViewModel.cs

16 lines
432 B
C#
Raw Normal View History

2024-03-27 11:04:28 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PlumbingRepairContracts.ViewModels
{
public class ReportWorkComponentViewModel
{
2024-04-09 13:35:33 +04:00
public string WorkName { get; set; } = string.Empty;
2024-03-27 11:04:28 +04:00
public int TotalCount { get; set; }
2024-04-09 13:35:33 +04:00
public List<(string Component, int Count)> Components { get; set; } = new();
2024-03-27 11:04:28 +04:00
}
}