argos/dmp-frontend/src/app/models/dashboard/SearchBarItem.ts

12 lines
174 B
TypeScript
Raw Normal View History

2018-09-18 14:41:24 +02:00
export enum SearchBarItemType {
DATASET = 0,
DMP = 1,
PROJECT = 2
}
2018-08-24 17:21:02 +02:00
export class SearchBarItem {
public id: string;
public label: string;
2018-09-18 14:41:24 +02:00
public type: string;
2018-08-24 17:21:02 +02:00
}