using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 曲线点 /// public class CurvePointDto { /// /// /// public CurvePointDto() { } /// /// /// public CurvePointDto(double x,double y) { this.X = x; this.Y = y; } /// /// x坐标 /// public double X { get; set; } /// /// y坐标 /// public double Y { get; set; } } }