More refactoring + reusing the server's store on the client

This commit is contained in:
Art Lowel
2017-03-02 13:36:40 +01:00
parent b0f25c4dae
commit 7745938027
27 changed files with 348 additions and 371 deletions

View File

@@ -5,18 +5,19 @@ import { Item } from "./item.model";
@inheritSerialization(DSpaceObject)
export class Bundle extends DSpaceObject {
/**
* The primary bitstream of this Bundle
*/
primaryBitstream: Bitstream;
/**
* The primary bitstream of this Bundle
*/
primaryBitstream: Bitstream;
/**
* An array of Items that are direct parents of this Bundle
*/
parents: Array<Item>;
/**
* An array of Items that are direct parents of this Bundle
*/
parents: Array<Item>;
/**
* The Item that owns this Bundle
*/
owner: Item;
/**
* The Item that owns this Bundle
*/
owner: Item;
}