Skip to content

Commit

Permalink
added models
Browse files Browse the repository at this point in the history
  • Loading branch information
niksoc-hi committed Feb 10, 2019
1 parent 57cf5d7 commit cf9e6ec
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Developer.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class Developer {
id: number;
name: string;
knownTechnologies: string[];
}
5 changes: 5 additions & 0 deletions src/Project.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class Project {
id: number;
name: string;
requiredTechnologies: string[];
}

0 comments on commit cf9e6ec

Please sign in to comment.