16 lines
456 B
C#
16 lines
456 B
C#
using Autodesk.Revit.Attributes;
|
|
using Nice3point.Revit.Toolkit.External;
|
|
using ShrlAlgoToolkit.RevitAddins.Assists;
|
|
|
|
namespace ShrlAlgoToolkit.RevitAddins.RvCommon
|
|
{
|
|
[Transaction(TransactionMode.Manual)]
|
|
internal class ModelByCurveCreatorCmd : ExternalCommand
|
|
{
|
|
public override void Execute()
|
|
{
|
|
WinDialogHelper.ShowModeless<ModelByCurveCreatorView>(new ModelByCurveCreatorViewModel(Document));
|
|
}
|
|
}
|
|
}
|