chore: RecentChat -> extends <- Chat

This commit is contained in:
CrescentLeaf
2025-09-21 02:18:05 +08:00
parent 6a1084eeca
commit ee79e3eefa

View File

@@ -1,6 +1,5 @@
export default class RecentChat { import Chat from "./Chat.ts"
declare id: string
declare title: string export default class RecentChat extends Chat {
declare avatar?: string
declare content: string declare content: string
} }