11 lines
192 B
TypeScript
11 lines
192 B
TypeScript
export interface Topic {
|
|
id: number
|
|
name: string
|
|
content: string
|
|
createdAt: string
|
|
updatedAt: string
|
|
version: number
|
|
parentTopicId?: number
|
|
}
|
|
|
|
export const topics: Topic[] = [];
|