import { EventTypeRestrictionVM } from './eventTypeRestrictionVM'; export interface EventTypeVM { id?: number; name: string; eventTypeRestrictions?: Array; can_update?: boolean; can_delete?: boolean; }