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