PIbd-23-Yunusov-N.N.-CarRep.../CarRepairShop/CarRepairShopContracts/ViewModels/ReportShopRepairViewModel.cs
2024-04-08 01:56:52 +04:00

10 lines
282 B
C#

namespace CarRepairShopContracts.ViewModels
{
public class ReportShopRepairViewModel
{
public string ShopName { get; set; } = string.Empty;
public int TotalCount { get; set; }
public List<Tuple<string, int>> Repairs { get; set; } = new();
}
}