feat(wip): User & RecentChat in client

This commit is contained in:
CrescentLeaf
2025-09-06 16:40:49 +08:00
parent e8f97d9131
commit 2d92fffb55
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
export default class RecentChat {
declare id: string
declare title: string
declare avatar: string | null
declare content: string
}

View File

@@ -0,0 +1,7 @@
export default class User {
declare id: string
declare count: number
declare username: string | null
declare nickname: string
declare avatar: string | null
}