﻿using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace MapzenGo.Models.Enums
{
    public enum PlaceType
    {
        Unknown,
        Borough,
        City,
        Continent,
        Country,
        Farm,
        Hamlet,
        HistoricPlace,
        IsolatedDwelling,
        Locality,
        Macrohood,
        MeteorologicalStation,
        Neighbourhood,
        PopulatedPlace,
        Province,
        Quarter,
        ScientificStation,
        State,
        Suburb,
        Town,
        Village,
    }
}
