实现评论本地更新

This commit is contained in:
2025-06-07 13:49:33 +08:00
parent 96316e3d51
commit 2627c85ec5
5 changed files with 35 additions and 24 deletions

View File

@@ -0,0 +1,11 @@
import { User } from "./user";
export interface BlogComment {
id: string;
blogId: string;
content: string;
createdAt: string;
deletedAt: string | null;
parentId: string | null;
user: User | null;
}