4 lines
86 B
TypeScript
4 lines
86 B
TypeScript
export class Post {
|
|
constructor(private title: string, private text: string) {}
|
|
}
|