Files
ng-blog/frontend/src/app/shared/interfaces/post.ts
2025-04-11 15:38:04 +02:00

11 lines
141 B
TypeScript

export interface Post {
id: number;
title: string;
tldr: string;
content: string;
}
export interface Comment {
content: string;
}