forked from hazza/dspace-angular
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) {
|
|
|
|
}
|
|
}
|