feat: implement document api call
This commit is contained in:
parent
f303ed3041
commit
d7d0aa9739
2 changed files with 100 additions and 0 deletions
20
src/interface/response/storage.ts
Normal file
20
src/interface/response/storage.ts
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
export interface StorageFile {
|
||||
pathname: string
|
||||
|
||||
fileName: string
|
||||
fileSize: number
|
||||
fileType: string
|
||||
|
||||
title: string
|
||||
description: string
|
||||
category: string[]
|
||||
keyword: string[]
|
||||
|
||||
path: string
|
||||
upload: boolean
|
||||
|
||||
updatedAt: string | Date
|
||||
updatedBy: string
|
||||
createdAt: string | Date
|
||||
createdBy: string
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue