9 lines
204 B
C#
9 lines
204 B
C#
|
namespace InnovEnergy.Lib.Units.Composite;
|
||
|
|
||
|
public record DcBus : IBus
|
||
|
{
|
||
|
public Voltage Voltage { get; init; }
|
||
|
public Current Current { get; init; }
|
||
|
|
||
|
public Power Power => Current * Voltage;
|
||
|
}
|