hoàn thành bước3.2. PDF Gallery (Dashboard)

This commit is contained in:
2026-03-31 14:26:48 +07:00
parent ebfa869a26
commit 9450cd3ed4
18 changed files with 766 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
export interface User {
id: number;
username: string;
email: string;
created_at: string;
}
export interface PDFItem {
id: number;
title: string;
total_pages: number | null;
created_at: string;
}
export interface PDFUploadResult {
filename: string;
success: boolean;
pdf: PDFItem | null;
error: string | null;
}