tethys.frontend/src/models/oai.ts

12 lines
209 B
TypeScript
Raw Normal View History

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