Files
mRemoteNG/mRemoteV1/Tree/IConfirm.cs

7 lines
159 B
C#

namespace mRemoteNG.Tree
{
public interface IConfirm<in TConfirmationTarget>
{
bool Confirm(TConfirmationTarget confirmationTarget);
}
}