metclimatec/Adaptation/Shared/ParameterType.cs
2024-04-19 16:06:46 -07:00

10 lines
148 B
C#

namespace Adaptation.Shared;
public enum ParameterType
{
String = 0,
Integer = 2,
Double = 3,
Boolean = 4,
StructuredType = 5
}