ningshuxia
2024-03-20 785c92f5078cb7aeb05b13f6da627defb6525b36
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System.Collections.Generic;
using System.Linq;
 
namespace IStation.Epanet.Analysis
{
    public class Input
    {
        public Input()
        {
            this.Links = new List<InputLink>();
            this.Nodes = new List<InputNode>();
        }
        public Input(Input rhs)
        {
            this.Links = rhs.Links.ToList();
            this.Nodes = rhs.Nodes.ToList();
        }
 
        public List<InputLink> Links { get; set; }
        public List<InputNode> Nodes { get; set; }
 
    }
}