connect-admin/src/app/domain/portal.ts

17 lines
303 B
TypeScript

import {Page} from './page';
import {Entity} from './entity';
export interface Portal {
_id: string;
pid: string;
name: string;
type: string;
entities: string[] | Entity[];
pages: string[] | Page[];
}
export interface CheckPortal {
community: Portal;
checked: boolean;
}