Add comment functionality.

This commit is contained in:
2025-05-13 17:11:48 +08:00
parent 545432b4f1
commit 0dd2143664
16 changed files with 406 additions and 53 deletions

View File

@@ -89,3 +89,10 @@ export interface UploadingFile {
storageId: number;
resourceId: number;
}
export interface Comment {
id: number;
content: string;
created_at: string;
user: User;
}