2023-03-09 11:40:47 +00:00
|
|
|
using InnovEnergy.Lib.StatusApi;
|
|
|
|
using InnovEnergy.Lib.Units;
|
|
|
|
|
2023-02-25 14:53:58 +00:00
|
|
|
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
|
|
|
|
}
|