2018-04-27 02:25:36 -04:00
|
|
|
export default class ListLabel {
|
2018-03-05 07:34:59 -05:00
|
|
|
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;
|
2017-09-06 01:02:30 -04:00
|
|
|
this.type = obj.type;
|
2016-08-04 11:16:50 -04:00
|
|
|
this.color = obj.color;
|
2016-08-19 09:45:19 -04:00
|
|
|
this.textColor = obj.text_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
|
|
|
}
|
|
|
|
}
|
2016-12-14 01:51:53 -05:00
|
|
|
|
|
|
|
window.ListLabel = ListLabel;
|