argos/dmp-frontend/src/app/core/model/help-content/page.ts

14 lines
178 B
TypeScript
Raw Normal View History

2018-02-16 08:45:18 +01:00
/**
* Created by stefania on 7/13/17.
*/
export interface Page {
2018-10-05 17:00:54 +02:00
_id: string;
route: string;
name: string;
2018-02-16 08:45:18 +01:00
}
export interface CheckPage {
2018-10-05 17:00:54 +02:00
page: Page;
checked: boolean;
}