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>();
|
}
|
|
|
}
|