Files
LingChair/client/api/client_data/Chat.ts
CrescentLeaf 38c28c3fb6 我累了
2025-10-08 02:52:02 +08:00

12 lines
250 B
TypeScript

import ChatType from "./ChatType.ts"
export default class Chat {
declare type: ChatType
declare id: string
declare title: string
declare avatar?: string
declare settings?: { [key: string]: unknown }
[key: string]: unknown
}