Innovenergy_trunk/csharp/Lib/Units/Number.cs

13 lines
258 B
C#
Raw Normal View History

2023-03-02 14:22:00 +00:00
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;
}