13 lines
184 B
C#

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