using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model { /// /// 轴坐标 /// public class AxisCoordinator : JsonModel { /// /// /// public AxisCoordinator() { } /// /// /// public AxisCoordinator(double min, double max, double space) { this.Min = min; this.Max = max; this.Space = space; } /// /// /// public AxisCoordinator(AxisCoordinator rhs) { this.Min = rhs.Min; this.Max = rhs.Max; this.Space = rhs.Space; } /// /// 最小值 /// public double Min { get; set; } /// /// 最大值 /// public double Max { get; set; } /// /// 间隔 /// public double Space { get; set; } } }