Add file size and redirect status to file model

This commit is contained in:
2025-05-17 22:47:46 +08:00
parent 38999d844d
commit 1396f6939b
4 changed files with 35 additions and 5 deletions

View File

@@ -82,6 +82,9 @@ export interface RFile {
id: string;
filename: string;
description: string;
size: number;
is_redirect: boolean;
user_id: number;
}
export interface UploadingFile {