9 lines
231 B
JavaScript
9 lines
231 B
JavaScript
class Label {
|
|
constructor (obj) {
|
|
this.id = obj.id;
|
|
this.title = obj.title;
|
|
this.color = obj.color;
|
|
this.description = obj.description;
|
|
this.priority = (obj.priority !== null) ? obj.priority : Infinity;
|
|
}
|
|
}
|