namespace HStation.WinFrmUI { /// /// 曲线点ViewModel /// public class CurvePointMatchingViewModel { /// /// /// public CurvePointMatchingViewModel() { } /// /// /// public CurvePointMatchingViewModel(double x, double y) { this.X = x; this.Y = y; } /// /// X /// public double X { get; set; } /// /// Y /// public double Y { get; set; } } }