IManage.cs 106 B

12345678
  1. namespace OhmGraphite
  2. {
  3. interface IManage
  4. {
  5. void Start();
  6. void Stop();
  7. }
  8. }