Shuxia Ning
2024-07-17 fd681339c81201ed6fb3303647ecab89e3e6c0c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
namespace IStation.Dto.Epanet
{
 
    /// <summary>
    /// Á¬½Ó
    /// </summary>
    public class Link : Element
    {
 
        public Link()
        {
            //   this.Vertices = new List<EnPoint>();
            // 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();
        }
 
 
        /// <summary>
        /// ÀàÐÍ
        /// </summary>
        // public LinkType LinkType { get; set; }
 
        /// <summary>
        /// Ö±¾¶
        /// </summary>
        // public double Diameter { get; set; }
 
        /// <summary>
        /// ³¤¶È
        /// </summary>
        // public double Lenght { get; set; }
 
        /// <summary>
        /// Æðʼµã
        /// </summary>
        public Node FirstNode { get; set; }
 
        /// <summary>
        /// ½áÊøµã
        /// </summary>
        public Node SecondNode { get; set; }
 
        /// <summary>
        /// ×´Ì¬
        /// </summary>
        // public StatusType Status { get; set; }
 
        /// <summary>
        /// Á¬½Óµã
        /// </summary>
        // public List<EnPoint> Vertices { get; set; }
 
 
    }
 
}