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