6 lines
111 B
JavaScript
6 lines
111 B
JavaScript
export default class IssueProject {
|
|
constructor(obj) {
|
|
this.id = obj.id;
|
|
this.path = obj.path;
|
|
}
|
|
}
|