- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace WebApplication3.Clases
- {
- public class Feature
- {
- public string Type { get; set; }
- public string Properties { get; set; }
- public Geometry Geometry { get; set; }
- }
- }
|