实现评论本地更新
This commit is contained in:
11
tone-page-web/lib/types/blogComment.ts
Normal file
11
tone-page-web/lib/types/blogComment.ts
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user