TodoTaskExecType.cs 267 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace GeekDesk.Constant
  7. {
  8. public enum TodoTaskExecType
  9. {
  10. SET_TIME = 1, //指定时间
  11. CRON = 2 //cron表达式
  12. }
  13. }