mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-10 03:23:07 +00:00
23 lines
388 B
TypeScript
23 lines
388 B
TypeScript
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;
|
|
|
|
}
|