qinjie
2023-12-19 15d15d24fbccb9b70a305b46b71453b2ab1a720e
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
using Hydro.Core.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Hydro.Revit.Model
{
    public class NetWorkOutViewModel
    {
        public long BimFaceID { get; set; }
 
        public List<HydrantBoxViewModel> HydrantBoxes { get; set; } = new List<HydrantBoxViewModel>();
 
        public List<JunctionViewModel> Junctions { get; set; } = new List<JunctionViewModel>();
 
        public List<NozzleViewModel> Nozzles { get; set; } = new List<NozzleViewModel>();
 
        public List<PipeViewModel> Pipes { get; set; } = new List<PipeViewModel>();
 
        public List<PumpAdapterViewModel> PumpAdapters { get; set; } = new List<PumpAdapterViewModel>();
 
        public List<ValveViewModel> Valves { get; set; } = new List<ValveViewModel>();
 
        public List<WaterPumpViewModel> Pumps { get; set; } = new List<WaterPumpViewModel>();
 
        public List<WaterTankViewModel> Tanks { get; set; } = new List<WaterTankViewModel>();
 
        public List<ReservoisModel> Reservos { get; set; } = new List<ReservoisModel>();
 
        public List<MeterModel> Meters { get; set; }= new List<MeterModel>();
 
        public List<NodeCalcModel> Nodes { get; set; } = new List<NodeCalcModel>();
        public List<LinkCalcModel> Links { get; set; } = new List<LinkCalcModel>();
    }
 
 
}