Files
DotNet.Revit/DotNet.RevitUI/MVVM/IExecuteWithObject.cs
2026-02-23 16:57:09 +08:00

19 lines
299 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace DotNet.RevitUI.MVVM
{
interface IExecuteWithObject
{
object Target
{
get;
}
void ExecuteWithObject(object parameter);
void MarkForDeletion();
}
}