Simple native (ng2) document list component

This commit is contained in:
Denys Vuika
2016-04-12 20:18:15 +01:00
parent 13a3f7ae7d
commit 7a36a1a30a
9 changed files with 184 additions and 6 deletions

View File

@@ -0,0 +1,6 @@
import {DocumentEntity} from "./document.entity";
// contains only limited subset of available fields
export class FolderEntity {
items: DocumentEntity[];
}