mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 12:08:37 +08:00
9 lines
158 B
C#
9 lines
158 B
C#
using mRemoteNG.Connection;
|
|
|
|
namespace mRemoteNG.Tree
|
|
{
|
|
public interface ITreeNodeClickHandler<in T>
|
|
{
|
|
void Execute(T clickedNode);
|
|
}
|
|
} |