namespace IStation.Epanet { public class TimeValue { public TimeValue() { } public TimeValue(TimeValue rhs) { this.Time = rhs.Time; this.Value = rhs.Value; } /// /// 时间 /// public DateTime Time { get; set; } /// /// 值字典 /// public Dictionary Value { get; set; } } }