Contour.cs 369 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace QuYuSaoMiao.Entity
  7. {
  8. public class Contour
  9. {
  10. private string wkt { get; set; }
  11. public double elev { get; set; }
  12. public bool ifclosed { get; set; }
  13. public List<double[]> lstPoints { get; set; }
  14. }
  15. }