using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WebApplication3.Clases { public class GeoJson { public string Type { get; set; } public string Creator { get; set; } public Feature[] Features { get; set; } } }