namespace HStation.Model { /// /// 阀门 /// public class RevitValve : RevitLink { /// /// /// public RevitValve() : base() { } /// /// /// public RevitValve(RevitValve rhs) : base(rhs) { this.Diameter = rhs.Diameter; this.MinorLoss = rhs.MinorLoss; this.ValveType = rhs.ValveType; this.ValveSetting = rhs.ValveSetting; } /// /// 阀门直径 (mm) /// public double Diameter { get; set; } /// /// 局部阻力系数 /// public double MinorLoss { get; set; } /// /// 阀门类型 /// public string ValveType { get; set; } /// /// 阀门设置 /// public string ValveSetting { get; set; } } }