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 HourValue { public HourValue() { } public HourValue(int hour, double value) { this.Hour = hour; this.Value = value; } public int Hour { get; set; } public double Value { get; set; } } }