import { Country } from '../country/country-models'; export interface Region { regionname?: string; countries?: Country[]; productcount?: number; }