Merge branch 'master' of ssh://bitbucket.org/mkalmo/i399exng1ts

This commit is contained in:
Märt Kalmo 2017-06-02 14:26:16 +03:00
commit c97290c13b
1 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,8 @@
export class Post {
constructor(public title: string, public text: string) {}
getTitle() {
return this.title;
}
}