debian-mirror-gitlab/app/assets/javascripts/boards/models/iteration.js
2021-03-11 19:13:27 +05:30

9 lines
227 B
JavaScript

export default class ListIteration {
constructor(obj) {
this.id = obj.id;
this.title = obj.title;
this.state = obj.state;
this.webUrl = obj.web_url || obj.webUrl;
this.description = obj.description;
}
}