Files
ckb-SuperAdmin/Cunkebao/types/content-library.ts
笔记本里的永平 5ff15472f5 feat: 本次提交更新内容如下
场景获客列表搞定
2025-07-07 17:08:27 +08:00

30 lines
504 B
TypeScript

export interface ContentLibrary {
id: string
name: string
type: "moments" | "group"
source: string
creator: string
contentCount: number
lastUpdated: string
status: "active" | "inactive"
}
export interface ContentLibraryResponse {
code: number
message: string
data: {
libraries: ContentLibrary[]
total: number
}
}
export interface ContentLibrarySelectResponse {
code: number
message: string
data: {
success: boolean
libraryId: string
name: string
}
}