using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 曲线坐标参数 /// public class CurveAxisCoordinateDto { /// /// /// public CurveAxisCoordinateDto() { } /// /// /// public CurveAxisCoordinateDto(double max, double min, double space) { this.Max = max; this.Min = min; this.Space = space; } /// /// /// public double Max { get; set; } /// /// /// public double Min { get; set; } /// /// /// public double Space { get; set; } } }