mirror of
https://git.victorphan.net/basketballcantho/ten-project.git
synced 2026-08-05 15:13:11 +07:00
hoàn thành bước3.2. PDF Gallery (Dashboard)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user