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
|
|
|
|
2023-03-20 12:22:57 +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>]
|
2023-03-20 12:22:57 +00:00
|
|
|
public readonly partial struct Percent
|
2023-03-01 07:14:08 +00:00
|
|
|
{
|
|
|
|
public static String Unit => "%";
|
|
|
|
public static String Symbol => "%"; // ??
|
|
|
|
}
|