Started to work on media upload and organization

This commit is contained in:
cdricms
2025-01-23 20:10:15 +01:00
parent f9dce4b40b
commit cdd8e34096
21 changed files with 1069 additions and 159 deletions

View File

@@ -0,0 +1,6 @@
export default interface IPaginatedResponse<T> {
page: number;
limit: number;
totalPages: number;
items: T[];
}

View File

@@ -0,0 +1,8 @@
export default interface Media {
id: string;
url: string;
path: string;
alt: string;
size: number;
type: string;
}