namespace TelpoPush.Fence.Worker.Models.Fence { /// /// gps点坐标 /// public class GpsFencePoint { public GpsFencePoint() { } /// /// /// /// 经度 /// 纬度 public GpsFencePoint(double lng,double lat) { Longitude = lng; Latitude = lat; } /// /// 经度 /// public double Longitude { get; set; } /// /// 纬度 /// public double Latitude { get; set; } } }