using System; namespace BattSim.Models { public class EnergyData { public DateTime Time { get; set; } public bool DayTarif { get; set; } public double Consumption { get; set; } public double Production { get; set; } } }