64387: Upload bitstream component + Edit bitstream placeholder

This commit is contained in:
Kristof De Langhe
2019-08-16 13:35:04 +02:00
parent d1dbe49333
commit 7bd6c9acab
14 changed files with 327 additions and 17 deletions

View File

@@ -0,0 +1,21 @@
import { MetadataMap } from '../../core/shared/metadata.models';
/**
* Properties to send to the REST API for uploading a bitstream
*/
export class UploaderProperties {
/**
* A custom name for the bitstream
*/
name: string;
/**
* Metadata for the bitstream (e.g. dc.description)
*/
metadata: MetadataMap;
/**
* The name of the bundle to upload the bitstream to
*/
bundleName: string;
}