Files
explainegy-nextjs/types/postData.tsx
2023-01-12 11:56:21 +01:00

9 lines
152 B
TypeScript

export interface PostArticle {
name: string;
title: string;
markdown: string;
introduction: string;
categoryId: number;
imageId?: number;
}