Renamed SearchParam class with a generic name RequestParam

This commit is contained in:
Giuseppe Digilio
2020-04-02 19:19:38 +02:00
parent 5a37891184
commit 41d6255998
10 changed files with 37 additions and 37 deletions

View File

@@ -0,0 +1,9 @@
/**
* Class representing a query parameter (query?fieldName=fieldValue) used in FindListOptions object
*/
export class RequestParam {
constructor(public fieldName: string, public fieldValue: any) {
}
}