HourElectricEnergy.cs 356 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ProductionLineMonitor.Application.Services.EnergyConsumptionService.Dtos
  5. {
  6. public class HourElectricEnergy
  7. {
  8. public string Time { get; set; } = string.Empty;
  9. public int Capacity { get; set; }
  10. public double ElectricEnergy { get; set; }
  11. }
  12. }