duheng
2025-03-18 7ee0220b5f5626deef516b6e5c417bfa201e5a88
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
namespace IStation.Epanet
{
    public class TimeValue
    {
        public TimeValue()
        {
 
        }
        public TimeValue(TimeValue rhs)
        {
            this.Time = rhs.Time;
            this.Value = rhs.Value;
        }
 
 
        /// <summary>
        /// 时间
        /// </summary>
        public DateTime Time { get; set; }
 
        /// <summary>
        /// 值字典
        /// </summary>
        public Dictionary<string, double> Value { get; set; }
 
    }
}