|
using InnovEnergy.Lib.StatusApi.DeviceTypes;
|
|
using InnovEnergy.Lib.Units.Composite;
|
|
|
|
namespace InnovEnergy.Lib.Devices.AMPT;
|
|
|
|
public class AmptStatus : IMppt
|
|
{
|
|
public required DcBus Dc { get; init; }
|
|
public required IReadOnlyList<DcBus> Strings { get; init; }
|
|
}
|
|
|