9 lines
291 B
C#
9 lines
291 B
C#
|
namespace CarRepairShopContracts.ViewModels
|
|||
|
{
|
|||
|
public class ReportRepairComponentViewModel
|
|||
|
{
|
|||
|
public string RepairName { get; set; } = string.Empty;
|
|||
|
public int TotalCount { get; set; }
|
|||
|
public List<Tuple<string, int>> Components { get; set; } = new();
|
|||
|
}
|
|||
|
}
|