Project

General

Profile

1 61381 k.triantaf
import {Page} from './page';
2
import {Entity} from './entity';
3
/*
4
5
export interface Community {
6
    _id: string;
7
    pid: string;
8
    name: string;
9
    entities: string[] | Entity[];
10
    pages: string[] | Page[];
11
}
12
13
export interface CheckCommunity {
14
   community: Community;
15
   checked: boolean;
16
}
17
*/