wangzelong
2022-09-20 85a3bba2ed29b8cf6f6009f837d01583c5daf9d4
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace IStation
{
    /// <summary>
    /// 任务接口
    /// </summary>
    public interface IJob
    {
        /// <summary>
        /// 执行
        /// </summary>
        void Execute();
    }
}