namespace IStation.Dto.Inp { /// /// 管道 /// public class Pipe : Link { public Pipe() { } public Pipe(Pipe rhs) { this.Id = rhs.Id; this.FirstNode = rhs.FirstNode; this.SecondNode = rhs.SecondNode; } } }