2023-08-25 15:15:46 +00:00
|
|
|
using InnovEnergy.Lib.StatusApi.DeviceTypes;
|
2023-05-06 13:41:20 +00:00
|
|
|
using InnovEnergy.Lib.Units.Composite;
|
2023-03-09 11:40:47 +00:00
|
|
|
|
2023-02-25 14:53:58 +00:00
|
|
|
namespace InnovEnergy.Lib.Devices.AMPT;
|
2023-02-16 12:57:06 +00:00
|
|
|
|
2023-08-25 15:15:46 +00:00
|
|
|
public class AmptStatus : IMppt
|
2023-06-13 10:53:37 +00:00
|
|
|
{
|
2023-08-25 15:15:46 +00:00
|
|
|
public required DcBus Dc { get; init; }
|
|
|
|
public required IReadOnlyList<DcBus> Strings { get; init; }
|
2023-06-13 10:53:37 +00:00
|
|
|
}
|
|
|
|
|