22 lines
463 B
C#
22 lines
463 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
using Autodesk.Revit.Attributes;
|
|
|
|
using Nice3point.Revit.Toolkit.External;
|
|
|
|
|
|
namespace ShrlAlgo.RvKits.RvMEP;
|
|
|
|
[Transaction(TransactionMode.Manual)]
|
|
internal class ArrangeMEPCurveCmd : ExternalCommand
|
|
{
|
|
public override void Execute()
|
|
{
|
|
WinDialogHelper.ShowModeless<ArrangeMEPCurveView>(new ArrangeMEPCurveViewModel());
|
|
}
|
|
}
|