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 HydrantBoxes { get; set; } = new List(); public List Junctions { get; set; } = new List(); public List Nozzles { get; set; } = new List(); public List Pipes { get; set; } = new List(); public List PumpAdapters { get; set; } = new List(); public List Valves { get; set; } = new List(); public List Pumps { get; set; } = new List(); public List Tanks { get; set; } = new List(); public List Reservos { get; set; } = new List(); public List Meters { get; set; }= new List(); public List Nodes { get; set; } = new List(); public List Links { get; set; } = new List(); } }