mirror of
https://github.com/DerTyp7/explainegy-nextjs.git
synced 2025-10-29 21:02:13 +01:00
12 lines
244 B
TypeScript
12 lines
244 B
TypeScript
import { IContentTableEntry } from "./contentTable";
|
|
|
|
export interface PostArticle {
|
|
title: string;
|
|
name?: string;
|
|
markdown: string;
|
|
introduction: string;
|
|
categoryId: number;
|
|
contentTable: IContentTableEntry[]
|
|
imageId?: number;
|
|
}
|