13 lines
275 B
C#
13 lines
275 B
C#
|
|
||
|
using InnovEnergy.Lib.Units.Generator;
|
||
|
|
||
|
namespace InnovEnergy.Lib.Units;
|
||
|
|
||
|
[Generate]
|
||
|
public readonly partial struct ReactivePower
|
||
|
{
|
||
|
public static String Unit => "var";
|
||
|
public static String Symbol => "Q";
|
||
|
|
||
|
public ReactivePower(Decimal value) => Value = value;
|
||
|
}
|