Added Eperson and group models

This commit is contained in:
Giuseppe Digilio
2018-02-02 14:33:48 +01:00
parent 2309c1be3b
commit 55c55dc682
5 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import { DSpaceObject } from '../../shared/dspace-object.model';
export class Group extends DSpaceObject {
public handle: string;
public permanent: boolean;
}