argos/dmp-frontend/src/app/core/model/external-dataset/external-dataset.ts

12 lines
253 B
TypeScript
Raw Normal View History

2019-01-18 18:03:45 +01:00
import { ExternalDatasetType } from '../../common/enum/external-dataset-type';
export interface ExternalDatasetModel {
abbreviation: String;
id: String;
name: String;
2019-01-18 18:03:45 +01:00
reference: String;
type: ExternalDatasetType;
info: String;
source: String;
}