blob: be7afecc81f9c2cd04dbb3d150c83057b3f38991 [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2015-2018 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
********************************************************************************/
export class FileUploadRow {
file: File;
description: string;
dataUrl: any;
constructor (file: File, description: string, dataUrl: any) {
this.file = file;
this.description = description;
this.dataUrl = dataUrl;
}
}