i399exng1ts/post.ts

9 lines
136 B
TypeScript

export class Post {
constructor(public title: string, public text: string) {}
getTitle() {
return this.title;
}
}