IRunnable.cs 89 B

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