mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 06:53:03 +00:00
18 lines
401 B
TypeScript
18 lines
401 B
TypeScript
import { EPerson } from './eperson.model';
|
|
|
|
/**
|
|
* This class serves as a Data Transfer Model that contains the EPerson and whether or not it's able to be deleted
|
|
*/
|
|
export class EpersonDtoModel {
|
|
|
|
/**
|
|
* The EPerson linked to this object
|
|
*/
|
|
public eperson: EPerson;
|
|
/**
|
|
* Whether or not the linked EPerson is able to be deleted
|
|
*/
|
|
public ableToDelete: boolean;
|
|
|
|
}
|