Add percent in Units

This commit is contained in:
atef 2023-07-10 10:07:00 +02:00
parent 48c2cdcbc6
commit e9c2e16b5a
1 changed files with 1 additions and 0 deletions

View File

@ -21,6 +21,7 @@ public static class Units
public static Temperature Celsius(this Double value) => value;
public static Energy KWh (this Double value) => value * 1000;
public static Energy Wh (this Double value) => value;
public static Percent Percent(this Double value) => value;
public static String ToCsv(this Object thing)
{