import { ApiFlagUserTypeVM } from './apiFlagUserTypeVM'; import { EntityTypeVM } from './entityTypeVM'; export interface APIFlagVM { id?: number; name?: string; entity_type_id?: number; entType?: EntityTypeVM; apiFlagUserTypes?: Array; can_update?: boolean; can_delete?: boolean; }