2016-08-01 09:18:30 -04:00
|
|
|
class Label {
|
|
|
|
constructor (obj) {
|
2016-08-04 11:16:50 -04:00
|
|
|
this.id = obj.id;
|
2016-08-01 09:18:30 -04:00
|
|
|
this.title = obj.title;
|
2016-08-04 11:16:50 -04:00
|
|
|
this.color = obj.color;
|
2016-08-08 09:30:38 -04:00
|
|
|
this.description = obj.description;
|
2016-08-09 17:05:17 -04:00
|
|
|
this.priority = (obj.priority !== null) ? obj.priority : Infinity;
|
2016-08-01 09:18:30 -04:00
|
|
|
}
|
|
|
|
}
|