import type { UploadFile } from 'antd/lib/upload/interface';
export interface AttachmentFile extends UploadFile {
    docId?: string;
    docName?: string;
    fileId?: string;
}
