Files
web/src/lib/models/article.ts

27 lines
396 B
TypeScript
Raw Normal View History

2026-06-11 16:30:24 +08:00
export type ArticleNavGroup = {
id: number
name: string
code: string
articles: ArticleNavItem[]
}
export type ArticleNavItem = {
id: number
title: string
updated_at: string
}
export type ArticleDetail = {
id: number
title: string
content: string
updated_at: string
group: ArticleGroupInfo
}
export type ArticleGroupInfo = {
id: number
name: string
code: string
}