namespace IStation.Dto.Inp
{
///
/// Á¬½Ó
///
public class Link : Element
{
public Link()
{
// this.Vertices = new List();
// this.Status = StatusType.XHEAD;
}
public Link(Link rhs)
{
this.Id = rhs.Id;
// this.LinkType = rhs.LinkType;
// this.Diameter = rhs.Diameter;
// this.Lenght = rhs.Lenght;
this.FirstNode = rhs.FirstNode;
this.SecondNode = rhs.SecondNode;
// this.Status = rhs.Status;
//this.Vertices = rhs.Vertices?.ToList();
}
///
/// ÀàÐÍ
///
// public LinkType LinkType { get; set; }
///
/// Ö±¾¶
///
// public double Diameter { get; set; }
///
/// ³¤¶È
///
// public double Lenght { get; set; }
///
/// Æðʼµã
///
public Node FirstNode { get; set; }
///
/// ½áÊøµã
///
public Node SecondNode { get; set; }
///
/// ״̬
///
// public StatusType Status { get; set; }
///
/// Á¬½Óµã
///
// public List Vertices { get; set; }
}
}