13 lines
332 B
C#
13 lines
332 B
C#
using System;
|
|
|
|
namespace BattSim.Models
|
|
{
|
|
public class EnergyData
|
|
{
|
|
public DateOnly Date { get; set; }
|
|
public double DayConsumption { get; set; }
|
|
public double NightConsumption { get; set; }
|
|
public double DayProduction { get; set; }
|
|
public double NightProduction { get; set; }
|
|
}
|
|
} |