using PBS.Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IBox.WinFrmUI { public class SimuViewModel { public SimuViewModel() { } /// /// 系统最大流量 /// public double SysMaxQ { get; set; } = 30; /// /// 恒压 /// public double ConstantP { get; set; } = 110; /// /// 当前建筑物 /// public Build CurrentBuild { get; set; } /// /// 设施 /// public Facility Facilities { get; set; } ///// ///// 模拟值列表 ///// //public List SimuValues { get; set; } } }