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