tethys.frontend/src/models/oai.ts
2022-06-01 13:16:54 +02:00

17 lines
295 B
TypeScript

export interface OaiDataset {
doi: string;
title: string;
creator: string;
contributor: string;
subject: string;
north: number;
south: number;
east: number;
west: number;
}
export interface OaiPerson {
contributorName: string;
creatorName: string;
}