public UIHintParameterDefinition(string id, UIHintParameterType type)
 {
     Id   = id;
     Type = type;
 }
Пример #2
0
 public UIHintParameterDefinition(string id, UIHintParameterType type, bool optional)
 {
     Id       = id;
     Type     = type;
     Optional = optional;
 }