forked from geolba/tethys.frontend
12 lines
209 B
TypeScript
12 lines
209 B
TypeScript
|
export interface OaiDataset {
|
||
|
doi: string;
|
||
|
title: string;
|
||
|
creator: string;
|
||
|
contributor: string;
|
||
|
subject: string;
|
||
|
north: number;
|
||
|
south: number;
|
||
|
east: number;
|
||
|
west: number;
|
||
|
}
|