namespace HStation.WinFrmUI.PhartRelation { /// /// /// public class XhsSplinePointViewModel { public XhsSplinePointViewModel() { } public XhsSplinePointViewModel(double x, double y) { this.X = x; this.Y = y; } public XhsSplinePointViewModel(XhsSplinePointViewModel rhs) { this.X = rhs.X; this.Y = rhs.Y; } public double X { get; set; } public double Y { get; set; } } }