Innovenergy_trunk/csharp/Lib/Units/Percent.cs

12 lines
273 B
C#
Raw Normal View History

2023-05-24 10:04:01 +00:00
using InnovEnergy.Lib.SrcGen;
using InnovEnergy.Lib.SrcGen.Attributes;
2023-03-01 07:14:08 +00:00
namespace InnovEnergy.Lib.Units;
2023-03-01 07:14:08 +00:00
2023-05-24 10:04:01 +00:00
[Generate<Operators>][Generate<Sum>]
public readonly partial struct Percent
2023-03-01 07:14:08 +00:00
{
public static String Unit => "%";
public static String Symbol => "%"; // ??
}