refactor(dto): move app models into dto layer

This commit is contained in:
2026-06-17 17:34:55 +08:00
parent f0b5275c55
commit 5d66cef85c
24 changed files with 30 additions and 41 deletions
+1 -1
View File
@@ -9,7 +9,7 @@
* - `ChatWebSocketConnected` 事件 → true
* - `userSession.exit` → falseWS actor cleanup 时也会跑 exit
*/
import type { UiMessage } from "@/models/chat/ui-message";
import type { UiMessage } from "@/data/dto/chat";
export interface ChatState {
messages: UiMessage[];