11 lines
272 B
JavaScript
11 lines
272 B
JavaScript
|
class ListLabel {
|
||
|
constructor (obj) {
|
||
|
this.id = obj.id;
|
||
|
this.title = obj.title;
|
||
|
this.color = obj.color;
|
||
|
this.textColor = obj.text_color;
|
||
|
this.description = obj.description;
|
||
|
this.priority = (obj.priority !== null) ? obj.priority : Infinity;
|
||
|
}
|
||
|
}
|