mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 18:14:17 +00:00
15 lines
416 B
TypeScript
15 lines
416 B
TypeScript
import { SortOptions } from '../../cache/models/sort-options.model';
|
|
|
|
export class IntegrationSearchOptions {
|
|
|
|
constructor(public uuid: string = '',
|
|
public name: string = '',
|
|
public metadata: string = '',
|
|
public query: string = '',
|
|
public elementsPerPage?: number,
|
|
public currentPage?: number,
|
|
public sort?: SortOptions) {
|
|
|
|
}
|
|
}
|