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