mirror of
https://github.com/DerTyp7/explainegy-nextjs.git
synced 2025-10-29 21:02:13 +01:00
9 lines
152 B
TypeScript
9 lines
152 B
TypeScript
export interface PostArticle {
|
|
name: string;
|
|
title: string;
|
|
markdown: string;
|
|
introduction: string;
|
|
categoryId: number;
|
|
imageId?: number;
|
|
}
|