ICommunicator.cs 218 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace SinoChemFC2PosProxy
  6. {
  7. interface ICommunicator
  8. {
  9. bool IsStarted { get; }
  10. bool Start();
  11. }
  12. }