IService.cs 120 B

123456789
  1. namespace VCommon.Services
  2. {
  3. public interface IService
  4. {
  5. void Start();
  6. void Stop();
  7. }
  8. }