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