Exemplo n.º 1
0
 public Parameter(string key, ParamStatus status, ParamType paramType, int maxValue)
 {
     Key       = key;
     Status    = status;
     ParamType = paramType;
     MaxValue  = maxValue;
 }
Exemplo n.º 2
0
 public Parameter(string key, ParamStatus status, ParamType paramType)
 {
     Key       = key;
     Status    = status;
     ParamType = paramType;
 }
Exemplo n.º 3
0
 public Parameter(string key, ParamStatus status)
 {
     Key       = key;
     Status    = status;
     ParamType = ParamType.text;
 }