import { EntityFlagVM } from './entityFlagVM'; import { ImageVM } from './imageVM'; export interface ArtistVM { id?: number; name: string; description?: string; bio?: string; organisation_id?: number; images?: Array; flags?: Array; can_update?: boolean; can_delete?: boolean; }