10 lines
175 B
JavaScript
10 lines
175 B
JavaScript
/* eslint-disable no-unused-vars */
|
|
|
|
class ListMilestone {
|
|
constructor(obj) {
|
|
this.id = obj.id;
|
|
this.title = obj.title;
|
|
}
|
|
}
|
|
|
|
window.ListMilestone = ListMilestone;
|