namespace AntCity.CityBuilder.DataModel.Model { public class AirSpace { public int Id { get; set; } public string Name { get; set; } public AirSpaceCategory Category { get; set; } public string Top { get; set; } public string Base { get; set; } public string GeoJSONGeometry { get; set; } } }