mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
10 lines
184 B
C#
10 lines
184 B
C#
namespace mRemoteNG.Tree
|
|
{
|
|
public class AlwaysConfirmYes : IConfirm<object>
|
|
{
|
|
public bool Confirm(object target)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
} |