label.js.es6 293 字节
Newer Older
1
/* eslint-disable */
P
Phil Hughes 已提交
2
class ListLabel {
P
Phil Hughes 已提交
3
  constructor (obj) {
4
    this.id = obj.id;
P
Phil Hughes 已提交
5
    this.title = obj.title;
6
    this.color = obj.color;
7
    this.textColor = obj.text_color;
P
Phil Hughes 已提交
8
    this.description = obj.description;
9
    this.priority = (obj.priority !== null) ? obj.priority : Infinity;
P
Phil Hughes 已提交
10 11
  }
}