namespace HStation.Model
{
///
/// 过渡件
///
public class RevitTranslation : RevitPipe
{
///
///
///
public RevitTranslation() { }
///
///
///
public RevitTranslation(RevitTranslation rhs) : base(rhs)
{
this.Elev = rhs.Elev;
this.StartDiameter = rhs.StartDiameter;
this.EndDiameter = rhs.EndDiameter;
}
///
/// 标高
///
public double Elev { get; set; }
///
/// 上游直径 mm
///
public double StartDiameter { get; set; }
///
/// 下游直径 mm
///
public double EndDiameter { get; set; }
}
}