connect-admin/app/domain/community.ts

14 lines
238 B
TypeScript

import {Page} from './page';
export interface Community {
_id: string;
name: string;
entities: string[];
pages: Page[];
}
// export interface CheckCommunity {
// community : Community;
// checked : boolean;
// }