using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.WinFrmUI.CalcErQu { /// /// 时间值视图类 /// public class TimeValue { public TimeValue() { } public TimeValue(DateTime time, double value) { this.Time = time; this.Value = value; } public DateTime Time { get; set; } public double Value { get; set; } } }