using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace QuYuSaoMiao.Entity
{
    public class Contour
    {
        private string wkt { get; set; }
        public double elev { get; set; }
        public bool ifclosed { get; set; }
        public List<double[]> lstPoints { get; set; }
    }
}