10 lines
243 B
C#
10 lines
243 B
C#
|
using InnovEnergy.Lib.StatusApi.Phases;
|
||
|
|
||
|
namespace InnovEnergy.Lib.StatusApi.Connections;
|
||
|
|
||
|
|
||
|
public class DcConnection : Phase
|
||
|
{
|
||
|
public static DcConnection Null { get; } = new DcConnection();
|
||
|
public Decimal Power => Current * Voltage;
|
||
|
}
|