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