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