namespace Adaptation.Shared;

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