[Library | Trunk]: Content provider criteria add constructor

git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@60807 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
k.triantafyllou 2021-04-06 14:44:48 +00:00
parent b7ecadc8e0
commit cb5ec45266
1 changed files with 6 additions and 0 deletions

View File

@ -19,4 +19,10 @@ export class Constraint {
verb: string = 'contains';
field: string = null;
value: string;
constructor(verb: string, field: string, value:string) {
this.verb = verb;
this.field = field;
this.value = value;
}
}