9 lines
136 B
TypeScript
9 lines
136 B
TypeScript
export class Post {
|
|
constructor(public title: string, public text: string) {}
|
|
|
|
getTitle() {
|
|
return this.title;
|
|
}
|
|
|
|
}
|