public Characteristic(CharacteristicsTypes type, string text) { this.type = type; this.name = text; }
public Characteristic(CharacteristicsTypes type, string name, int id) { this.type = type; this.name = name; this.id = id; }