export interface IUploadResult {
    /**
     * Upload status
     */
    success: boolean;
    /**
     * Name of input file
     */
    from: string;
    /**
     * Name of data set
     */
    to: string;
    /**
     * Optional, any error encounter while uploading the data
     */
    error?: any;
}
