示例#1
0
 public Characteristic(CharacteristicsTypes type, string text)
 {
     this.type = type;
     this.name = text;
 }
示例#2
0
 public Characteristic(CharacteristicsTypes type, string name, int id)
 {
     this.type = type;
     this.name = name;
     this.id   = id;
 }