blob: db8929e38bc7362e04dff0bce0a3a1d05c7fa94f [file] [log] [blame]
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +03001interface ProjectResponseInterface {
2 id: string,
3 name: string
4}
5
6export class Project {
7 id: string;
8 name: string;
9
10 constructor(projectResponse: ProjectResponseInterface){
11 this.id = projectResponse.id;
12 this.name = projectResponse.name;
13 }
14}