vdkch/back/src/posts/post.interface.ts
2024-08-20 13:01:37 +10:00

8 lines
149 B
TypeScript

export interface Post {
id?: number;
text: string;
imageUrl?: string;
videoUrl?: string;
drawing?: string;
code?: string;
}