
export interface Location {
	id: number;
	name: string;
	isCountry: boolean;
	countryCode: string;
}