Files
LingChair/client/api/client_data/Chat.ts
2025-10-19 15:11:40 +08:00

15 lines
312 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 }
declare is_member: boolean
declare is_admin: boolean
[key: string]: unknown
}