argos/dmp-frontend/src/app/models/facet-search/FacetSearchCriteriaModel.ts

9 lines
262 B
TypeScript
Raw Normal View History

2018-10-05 12:03:22 +02:00
import { ProjectStateType } from '../projects/ProjectStateType';
2018-10-02 16:33:58 +02:00
export class FacetSearchCriteriaModel {
2018-10-05 17:00:54 +02:00
public projectStatus: ProjectStateType;
public projects: string[] = [];
public datasetProfile: string[] = [];
public dmpOrganisations: string[] = [];
2018-10-02 16:33:58 +02:00
}