namespace IStation.Dto.Inp { /// /// ½Úµã /// public class Node : Element { public Node() { } public Node(Node rhs) { this.Id = rhs.Id; // this.NodeType = rhs.NodeType; this.Coordinate = rhs.Coordinate; } /// /// ÀàÐÍ /// // public NodeType NodeType { get; set; } /// /// ×ø±ê /// public EnPoint Coordinate { get; set; } } }