namespace Yw.WinFrmUI
{
///
///
///
public class HydroMatchingViewModel
{
///
/// 水池
///
public List Tanks { get; set; }
///
/// 闷头
///
public List Bluntheads { get; set; }
///
/// 弯头
///
public List Elbows { get; set; }
///
/// 三通
///
public List Threelinks { get; set; }
///
/// 四通
///
public List Fourlinks { get; set; }
///
/// 喷嘴
///
public List Nozzles { get; set; }
///
/// 消火栓
///
public List Hydrants { get; set; }
///
/// 冷却塔
///
public List Coolings { get; set; }
///
/// 水表
///
public List Meters { get; set; }
///
/// 流量计
///
public List Flowmeters { get; set; }
///
/// 压力表
///
public List Pressmeters { get; set; }
///
/// 管道
///
public List Pipes { get; set; }
///
/// 过渡件
///
public List Translations { get; set; }
///
/// 水泵
///
public List Pumps { get; set; }
///
/// 阀门
///
public List Valves { get; set; }
///
/// 换热器
///
public List Exchangers { get; set; }
///
/// 压缩机
///
public List Compressors { get; set; }
}
}