zhangyk-c
2024-07-16 e3cf9cc38f6415ceffc4e8e1f733a68472a46f35
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
namespace HStation.Model
{
    /// <summary>
    /// 阀门
    /// </summary>
    public interface IRevitValve : IRevitNode, IRevitLinker
    {
        /// <summary>
        /// 直径
        /// </summary>
        double Diameter { get; set; }
 
        /// <summary>
        /// 局阻系数
        /// </summary>
        double MinorLoss { get; set; }
 
        /// <summary>
        /// 阀门类型
        /// </summary>
        string ValveType { get; set; }
 
        /// <summary>
        /// 阀门设置
        /// </summary>
        string ValveSetting { get; set; }
    }
}