IHandler.cs 84 B

12345678
  1. namespace OpenSEMI.ClientBase
  2. {
  3. public interface IHandler
  4. {
  5. void Handle();
  6. }
  7. }