- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace WebApplication3.Clases
- {
- public class Geometry
- {
- public string Type { get; set; }
- public List<List<float>> Coordinates { get; set; }
- }
- }
|