19 lines
421 B
C#
19 lines
421 B
C#
using Autodesk.Revit.DB;
|
|
using Autodesk.Revit.DB.Plumbing;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KMBIM
|
|
{
|
|
class PipeInfo
|
|
{
|
|
public Pipe pipe { set; get; }
|
|
public Autodesk.Revit.DB.XYZ InterPt { set; get; }
|
|
public double Dist { set; get; }
|
|
public FamilyInstance family { set; get; }
|
|
}
|
|
}
|