mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-16 14:33:03 +00:00
Added Eperson and group models
This commit is contained in:
22
src/app/core/eperson/models/eperson.model.ts
Normal file
22
src/app/core/eperson/models/eperson.model.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
import { DSpaceObject } from '../../shared/dspace-object.model';
|
||||
import { Group } from './group.model';
|
||||
|
||||
export class Eperson extends DSpaceObject {
|
||||
|
||||
public handle: string;
|
||||
|
||||
public groups: Group[];
|
||||
|
||||
public netid: string;
|
||||
|
||||
public lastActive: string;
|
||||
|
||||
public canLogIn: boolean;
|
||||
|
||||
public email: string;
|
||||
|
||||
public requireCertificate: boolean;
|
||||
|
||||
public selfRegistered: boolean;
|
||||
|
||||
}
|
Reference in New Issue
Block a user