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