namespace HStation.Model
{
///
/// 流量计
///
public class RevitFlowmeter : RevitJunction
{
///
///
///
public RevitFlowmeter() { }
///
///
///
public RevitFlowmeter(RevitFlowmeter rhs) : base(rhs)
{
this.CurrentFlow = rhs.CurrentFlow;
}
///
/// 当前流量(m³/h)
///
public double? CurrentFlow { get; set; }
}
}