summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/models/iteration.js
blob: b7bdc204f7cb1fd77e0b078738b7670d44c1f2b9 (plain)
1
2
3
4
5
6
7
8
9
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;
  }
}