123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ProductionLineMonitor.Core.Dtos
- {
- public class MachineEnergyConsumptionDto
- {
- public int Capacity1 { get; set; }
- public double EnergyConsumption1 { get; set; }
- public int Capacity2 { get; set; }
- public double EnergyConsumption2 { get; set; }
-
-
- }
- }
|