ISchedulerJob.cs 203 B

1234567891011
  1. namespace Lottomat.Application.SystemAutoJob.Interface
  2. {
  3. public interface ISchedulerJob
  4. {
  5. /// <summary>
  6. /// 执行事件
  7. /// </summary>
  8. void Execute();
  9. }
  10. }