15 lines
642 B
C#
15 lines
642 B
C#
|
using InnovEnergy.Lib.StatusApi.Connections;
|
||
|
using InnovEnergy.Lib.StatusApi.Devices;
|
||
|
|
||
|
namespace InnovEnergy.Lib.Devices.AMPT;
|
||
|
|
||
|
public record AmptDeviceStatus
|
||
|
(
|
||
|
DcConnection Dc,
|
||
|
// UInt16 NbrOfStrings,
|
||
|
Int16 DeviceId, // The string number
|
||
|
UInt32 Timestamp, // The UTC timestamp of the measurements
|
||
|
Decimal ProductionToday, // converted to kW in AmptCU class
|
||
|
IReadOnlyList<DcConnection> Strings
|
||
|
): Mppt(Dc, Strings)
|
||
|
{}
|