Files
douwco_thuisbatterij_simulator/Models/EnergyData.cs
2026-04-24 10:51:48 +02:00

23 lines
619 B
C#

using System;
namespace BattSim.Models
{
public class EnergyData
{
public DateTime Time { get; set; }
public bool DayTariff { get; set; }
public double Consumption { get; set; }
public double Production { get; set; }
public double BatteryCharge { get; set; }
public EnergyData(){}
public EnergyData(EnergyData other)
{
Time = other.Time;
DayTariff = other.DayTariff;
Consumption = other.Consumption;
Production = other.Production;
BatteryCharge = other.BatteryCharge;
}
}
}