namespace IStation { /// /// 任务接口 /// public interface IJob { /// /// 执行 /// void Execute(); } }