PIbd-23-Yunusov-N.N.-CarRep.../CarRepairShop/CarRepairShopContracts/ViewModels/ReportShopRepairViewModel.cs

10 lines
282 B
C#
Raw Normal View History

2024-04-08 01:56:52 +04:00
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();
}
}