2024-05-19 13:23:06 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace RenovationWorkContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportRepairComponentViewModel
|
|
|
|
|
{
|
|
|
|
|
public string RepairName { get; set; } = string.Empty;
|
|
|
|
|
public int TotalCount { get; set; }
|
|
|
|
|
public List<(string, int)> Components { get; set; } = new();
|
|
|
|
|
|
|
|
|
|
}
|
2024-06-22 15:58:51 +04:00
|
|
|
|
}
|