using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HStation.WinFrmUI { /// /// 模拟工况报告ViewModel /// public class SimulationWorkingReportViewModel { /// /// 报告类型 /// public string ReportType { get; set; } /// /// 基本信息 /// public SimulationReportInfoItemViewModel Info { get; set; } /// /// 水泵列表 /// public List Pumps { get; set; } /// /// 工况信息 /// public SimulationReportWorkingItemViewModel Working { get; set; } } }