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