mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
10 lines
209 B
TypeScript
10 lines
209 B
TypeScript
|
|
/**
|
|
* Class representing a query parameter (query?fieldName=fieldValue) used in FindListOptions object
|
|
*/
|
|
export class SearchParam {
|
|
constructor(public fieldName: string, public fieldValue: any) {
|
|
|
|
}
|
|
}
|