Add percent in Units
This commit is contained in:
parent
48c2cdcbc6
commit
e9c2e16b5a
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue