Change Active Power to DcPower in DcBus

This commit is contained in:
atef 2023-08-31 10:11:02 +02:00
parent 64b64cc1e0
commit a462ee0610
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ public sealed class DcBus
public required Voltage Voltage { get; init; }
public required Current Current { get; init; }
public required ActivePower Power { get; init; }
public required DcPower Power { get; init; }
public static DcBus FromVoltageCurrent(Voltage voltage, Current current) => new()
{