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
30
31
| namespace HStation.WinFrmUI
| {
| /// <summary>
| ///
| /// </summary>
| public class SimulationPrintLossCurveEndViewModel
| {
| /// <summary>
| ///
| /// </summary>
| public SimulationPrintLossCurveEndViewModel() { }
|
| /// <summary>
| ///
| /// </summary>
| public SimulationPrintLossCurveEndViewModel(List<SimulationPrintLossCurveItemViewModel> allItemList)
| {
| if (allItemList == null || allItemList.Count < 1)
| {
| return;
| }
| this.Items = allItemList?.Select(x => new SimulationPrintLossCurveEndItemViewModel(x.Code, x.Name, x.Distance, x.EndHead)).ToList();
| }
|
| /// <summary>
| /// 子级集合
| /// </summary>
| public List<SimulationPrintLossCurveEndItemViewModel> Items { get; set; }
|
| }
| }
|
|