15 lines
395 B
JavaScript
15 lines
395 B
JavaScript
/* eslint-disable no-unused-vars, space-before-function-paren */
|
|
|
|
class ListLabel {
|
|
constructor (obj) {
|
|
this.id = obj.id;
|
|
this.title = obj.title;
|
|
this.type = obj.type;
|
|
this.color = obj.color;
|
|
this.textColor = obj.text_color;
|
|
this.description = obj.description;
|
|
this.priority = (obj.priority !== null) ? obj.priority : Infinity;
|
|
}
|
|
}
|
|
|
|
window.ListLabel = ListLabel;
|