Files
LingChair/client-protocol/bean/ChatBean.ts
2025-11-09 01:00:01 +08:00

16 lines
387 B
TypeScript

import BaseChatSettingsBean from "./BaseChatSettingsBean.ts"
import ChatType from "../type/ChatType.ts"
export default class ChatBean {
declare type: ChatType
declare id: string
declare title: string
declare avatar_file_hash?: string
declare settings?: BaseChatSettingsBean
declare is_member: boolean
declare is_admin: boolean
[key: string]: unknown
}