10 lines
282 B
C#
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();
|
|
}
|
|
}
|