import { EventTypeVM } from './eventTypeVM'; import { OrganisationTypeVM } from './organisationTypeVM'; export interface EventTypeRestrictionVM { id?: number; event_type_id?: number; organisation_type_id?: number; eventType?: EventTypeVM; organisationType?: OrganisationTypeVM; }