IWorker.cs 287 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace App.Robot.Station.Logical.Worker
  5. {
  6. public interface IWorker
  7. {
  8. int id { get; set; }
  9. TaskConfig config { get; }
  10. void Start();
  11. void Stop();
  12. }
  13. }