using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model { /// /// 轴特殊刻度 /// public class AxisLabel : JsonList { /// /// /// public AxisLabel() { } /// /// /// public AxisLabel(string name, double value) { this.Name = name; this.Value = value; } /// /// /// public AxisLabel(AxisLabel rhs) { this.Name = rhs.Name; this.Value = rhs.Value; } /// /// 名称 /// public string Name { get; set; } /// /// 值 /// public double Value { get; set; } } }