From ee79e3eefa73d9c31e30dd9ad4d5ed37d12e0f4a Mon Sep 17 00:00:00 2001 From: CrescentLeaf Date: Sun, 21 Sep 2025 02:18:05 +0800 Subject: [PATCH] chore: RecentChat -> extends <- Chat --- client/api/client_data/RecentChat.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/client/api/client_data/RecentChat.ts b/client/api/client_data/RecentChat.ts index 9406aae..553ea04 100644 --- a/client/api/client_data/RecentChat.ts +++ b/client/api/client_data/RecentChat.ts @@ -1,6 +1,5 @@ -export default class RecentChat { - declare id: string - declare title: string - declare avatar?: string +import Chat from "./Chat.ts" + +export default class RecentChat extends Chat { declare content: string }