Exemplo n.º 1
0
 public UIComponentAttribute(string id, string name, string description = null, UIComponentRole role = UIComponentRole.None)
 {
     this.Id          = id;
     this.Name        = name;
     this.Description = description;
     this.Role        = role;
 }
Exemplo n.º 2
0
 public UIComponentAttribute(string id, UIComponentRole role = UIComponentRole.None)
 {
     this.Id   = id;
     this.Role = role;
 }