19 lines
299 B
C#
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();
|
|||
|
|
}
|
|||
|
|
}
|