7 lines
119 B
C#
7 lines
119 B
C#
|
namespace InnovEnergy.Lib.Units.Composite;
|
||
|
|
||
|
public abstract record Phase
|
||
|
(
|
||
|
Voltage Voltage,
|
||
|
Current Current
|
||
|
);
|