using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIP_Models { /// /// 是否当前执行的任务 /// public enum IfCurExec { /// /// 没有执行 /// No = 0, /// /// 当前执行 /// Yes = 1 } }