コード例 #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;
 }
コード例 #2
0
 public UIComponentAttribute(string id, UIComponentRole role = UIComponentRole.None)
 {
     this.Id   = id;
     this.Role = role;
 }