namespace InnovEnergy.Lib.Units.Composite; public record DcBus : IBus { public Voltage Voltage { get; init; } public Current Current { get; init; } public Power Power => Current * Voltage; }