using System; using System.Collections.Generic; using System.Text; namespace ProductionLineMonitor.Application.Services.EnergyConsumptionService.Dtos { public class HourElectricEnergy { public string Time { get; set; } = string.Empty; public int Capacity { get; set; } public double ElectricEnergy { get; set; } } }