import { AddressVM } from './addressVM'; export interface EventCreateVenueVM { id?: number; name?: string; description?: string; organisation_id?: number; address?: AddressVM; can_update?: boolean; can_delete?: boolean; }