Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IDerivedQuantity.cs
1using System.Collections.Generic;
3
4namespace Waher.Script.Units
5{
9 public interface IDerivedQuantity : IUnitCategory
10 {
14 KeyValuePair<string, PhysicalQuantity>[] DerivedUnits
15 {
16 get;
17 }
18 }
19}
Interface for derived quantities
KeyValuePair< string, PhysicalQuantity >[] DerivedUnits
Derived Units supported.
Interface for a category of units.
Definition: IUnitCategory.cs:7