Files
mRemoteNG/mRemoteV1/Tree/ClickHandlers/ITreeNodeClickHandler.cs
2017-02-11 17:25:13 -07:00

9 lines
158 B
C#

using mRemoteNG.Connection;
namespace mRemoteNG.Tree
{
public interface ITreeNodeClickHandler<in T>
{
void Execute(T clickedNode);
}
}