10 lines
289 B
C#
10 lines
289 B
C#
|
namespace PlumbingRepairContracts.ViewModels
|
|||
|
{
|
|||
|
public class ReportWorkComponentViewModel
|
|||
|
{
|
|||
|
public string WorkName { get; set; } = string.Empty;
|
|||
|
public int TotalCount { get; set; }
|
|||
|
public List<Tuple<string, int>> Components { get; set; } = new();
|
|||
|
}
|
|||
|
}
|