lixiaojun
2025-01-21 f589894c84d47b9671eef6d3a8337b6b51b32edb
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Yw.EPAnet
{
    internal class InpValve : Valve, IInpParser
    {
        public string Node1 { get; set; }
        public string Node2 { get; set; }
 
        /// <summary>
        /// Type为""时,表示普通阀门,为HeatExchanger时,表示热交换器,为AirCompressor时,表示空压机
        /// </summary>
        public string Type { get; set; }
    }
}