using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Hydro.Core; using Hydro.Core.Model; using Hydro.Revit.Base; namespace Hydro.Revit.Model { public class JunctionViewModel : JunctionModel, IBaseInterface { public string PositionJson { get; set; } public string SystemType { get; set; } public string Floor { get; set; } public string Node1 { get; set; } public string Node2 { get; set; } public void Draw() { throw new NotImplementedException(); } } }