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