You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
argos/dmp-frontend/src/app/models/dashboard/SearchBarItem.ts

12 lines
174 B
TypeScript

export enum SearchBarItemType {
DATASET = 0,
DMP = 1,
PROJECT = 2
}
export class SearchBarItem {
public id: string;
public label: string;
public type: string;
}