mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
13 lines
321 B
TypeScript
13 lines
321 B
TypeScript
import { PageInfo } from '../shared/page-info.model';
|
|
import { IntegrationModel } from './models/integration.model';
|
|
|
|
/**
|
|
* A class to represent the data retrieved by an Integration service
|
|
*/
|
|
export class IntegrationData {
|
|
constructor(
|
|
public pageInfo: PageInfo,
|
|
public payload: IntegrationModel[]
|
|
) { }
|
|
}
|