import { DownloadAttachment } from './download-file.model'; export interface FileUploadStatus { noOfFilesUploadedSuccessfully: number; filesNameOfUploadFailed: string[]; alreadyExistsFiles: string[]; isUploadingStart: boolean; uploadedFiles: DownloadAttachment[]; }