label.js.es6 120 Bytes
class Label {
  constructor (obj) {
    this.id = obj.id;
    this.title = obj.title;
    this.color = obj.color;
  }
}