Files
mRemoteNG/mRemoteV1/Tree/ClickHandlers/ITreeNodeClickHandler.cs
2017-01-13 10:54:39 -07:00

10 lines
166 B
C#

using mRemoteNG.Connection;
namespace mRemoteNG.Tree
{
public interface ITreeNodeClickHandler
{
void Execute(ConnectionInfo clickedNode);
}
}