10 lines
196 B
TypeScript
10 lines
196 B
TypeScript
|
|
export interface IFileUploadResponse {
|
||
|
|
fileStorageId: string;
|
||
|
|
fileName: string;
|
||
|
|
downloadUrl: string;
|
||
|
|
fileType: string;
|
||
|
|
fileSize: number;
|
||
|
|
secloreFileId: string;
|
||
|
|
protected: boolean;
|
||
|
|
}
|