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
28
29
| namespace IStation.Test
| {
| 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; }
|
| }
| }
|
|