argos/dmp-frontend/src/app/core/model/dataset-profile-definition/page.ts

8 lines
125 B
TypeScript
Raw Normal View History

2019-01-18 18:03:45 +01:00
import { Section } from "./section";
export interface Page {
ordinal: number;
title: string;
sections: Array<Section>;
}