Add collection api.

This commit is contained in:
2025-07-30 16:28:33 +08:00
parent f8c4509633
commit 17b40f2214
10 changed files with 740 additions and 37 deletions

View File

@@ -191,3 +191,11 @@ export interface Activity {
comment?: Comment;
file?: RFile;
}
export interface Collection {
id: number;
title: string;
article: string;
user: User;
images: Image[];
}