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

8 lines
125 B
TypeScript

import { Section } from "./section";
export interface Page {
ordinal: number;
title: string;
sections: Array<Section>;
}