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
| namespace IStation.Test
| {
| /// <summary>
| ///
| /// </summary>
| public class ModelVerification
| {
| /// <summary>
| /// 流量标识映射
| /// </summary>
| public Dictionary<string, string> FlowIdMapping { get; set; }
|
|
| /// <summary>
| /// 压力标识映射
| /// </summary>
| public Dictionary<string, string> PressureIdMapping { get; set; }
|
|
| /// <summary>
| /// 模式标识映射
| /// </summary>
| public Dictionary<string,string> PatternIdMapping { get; set; }
|
| }
| }
|
|