Blazor webassembly with radzen setup
This commit is contained in:
14
Models/BatteryDayResult.cs
Normal file
14
Models/BatteryDayResult.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace BatteryCostAnalysis.Models
|
||||
{
|
||||
public class BatteryDayResult
|
||||
{
|
||||
public DateTime Date { get; set; }
|
||||
public double ChargedEnergy { get; set; }
|
||||
public double UsedEnergy { get; set; }
|
||||
public double RemainingEnergy { get; set; }
|
||||
public double ReducedConsumption { get; set; }
|
||||
public double ReducedProduction { get; set; }
|
||||
}
|
||||
}
|
||||
13
Models/EnergyData.cs
Normal file
13
Models/EnergyData.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace BatteryCostAnalysis.Models
|
||||
{
|
||||
public class EnergyData
|
||||
{
|
||||
public DateTime Date { get; set; }
|
||||
public double DayConsumption { get; set; }
|
||||
public double NightConsumption { get; set; }
|
||||
public double DayProduction { get; set; }
|
||||
public double NightProduction { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user