14 lines
313 B
C#
14 lines
313 B
C#
using Autodesk.Revit.Attributes;
|
|
using Nice3point.Revit.Toolkit.External;
|
|
|
|
namespace ShrlAlgoToolkit.RevitAddins.DrawSheet;
|
|
[Transaction(TransactionMode.Manual)]
|
|
|
|
internal class QuickSelectionCmd : ExternalCommand
|
|
{
|
|
public override void Execute()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|