using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model { /// /// 自定义点信息 /// public class CustomPoint:JsonModel { /// /// /// public CustomPoint() { } /// /// /// public CustomPoint(double x, double y) { this.X = x; this.Y = y; } /// /// /// public CustomPoint(CustomPoint rhs) { this.X = rhs.X; this.Y = rhs.Y; } /// /// X /// public double X { get; set; } /// /// Y /// public double Y { get; set; } } }