From 13c42ddf38567b875ddbde972160921e299df1c3 Mon Sep 17 00:00:00 2001 From: CrescentLeaf Date: Sat, 20 Sep 2025 00:32:55 +0800 Subject: [PATCH] chore: add UserBean for client --- client/api/client_data/Chat.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 client/api/client_data/Chat.ts diff --git a/client/api/client_data/Chat.ts b/client/api/client_data/Chat.ts new file mode 100644 index 0000000..2013506 --- /dev/null +++ b/client/api/client_data/Chat.ts @@ -0,0 +1,10 @@ +export default class Chat { + declare type: "paivate" | "group" + declare id: string + declare title?: string + declare avatar_file_hash?: string + declare user_a_id?: string + declare user_b_id?: string + + [key: string]: unknown +}