using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HStation.WinFrmUI { /// /// 模拟可见来源 /// public enum eSimulationVisualSource { /// /// 未知 /// None, /// /// /// Bimface, /// /// /// Q3d, /// /// 属性 /// Property, /// /// 列表 /// List, /// /// 设置 /// Set, /// /// 查询 /// Search, /// /// 监测 /// Monitor, /// /// 检查 /// Check, /// /// 计算 /// Calcu, /// /// 警告 /// Warning, } }