2
0

IExecutor.cs 111 B

1234567
  1. namespace SharpCifs.Util.Sharpen
  2. {
  3. public interface IExecutor
  4. {
  5. void Execute (IRunnable runnable);
  6. }
  7. }