Innovenergy_trunk/csharp/Lib/Devices/AMPT/AmptStatus.cs

10 lines
230 B
C#
Raw Normal View History

2023-03-09 11:40:47 +00:00
using InnovEnergy.Lib.StatusApi;
using InnovEnergy.Lib.Units;
namespace InnovEnergy.Lib.Devices.AMPT;
2023-02-16 12:57:06 +00:00
2023-03-09 11:40:47 +00:00
public record AmptStatus : MpptStatus
2023-02-16 12:57:06 +00:00
{
2023-03-09 11:40:47 +00:00
public Energy ProductionToday { get; init; } // converted to kW in AmptCU class
}