Coursach/Course/Contracts/ViewModels/MachineWorkshopTimeReport.cs

10 lines
219 B
C#
Raw Normal View History

2024-04-30 21:51:55 +04:00

namespace Contracts.ViewModels
{
public class MachineWorkshopTimeReport
{
public string WorkshopName { get; set; } = string.Empty;
public List<string> Machines { get; set; } = new();
}
}