2019-12-18 16:14:21 +01:00
|
|
|
import {Page} from './page';
|
|
|
|
import {Entity} from './entity';
|
|
|
|
|
2020-09-24 13:18:24 +02:00
|
|
|
export interface Portal {
|
2019-12-18 16:14:21 +01:00
|
|
|
_id: string;
|
|
|
|
pid: string;
|
|
|
|
name: string;
|
2020-09-24 13:18:24 +02:00
|
|
|
type: string;
|
2019-12-18 16:14:21 +01:00
|
|
|
entities: string[] | Entity[];
|
|
|
|
pages: string[] | Page[];
|
|
|
|
}
|
|
|
|
|
2020-09-24 13:18:24 +02:00
|
|
|
export interface CheckPortal {
|
|
|
|
community: Portal;
|
2019-12-18 16:14:21 +01:00
|
|
|
checked: boolean;
|
|
|
|
}
|