Project

General

Profile

1 57916 argiro.kok
import {Page} from './page';
2
import {Entity} from './entity';
3
4 59319 konstantin
export interface Portal {
5 57916 argiro.kok
    _id: string;
6
    pid: string;
7
    name: string;
8 59319 konstantin
    type: string;
9 57916 argiro.kok
    entities: string[] | Entity[];
10
    pages: string[] | Page[];
11
}
12
13 59319 konstantin
export interface CheckPortal {
14
   community: Portal;
15 57916 argiro.kok
   checked: boolean;
16
}