You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

37 lines
701 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
/*==================================================
* Name:任務類型
* Author:John.yuan
* Time:2015-01-08
* Modify:
====================================================*/
namespace TimingTask
{
public enum TaskType
{
/// <summary>
/// 按月執行
/// </summary>
Month,
/// <summary>
/// 按天執行
/// </summary>
Day,
/// <summary>
/// 週期執行
/// </summary>
Period,
/// <summary>
/// 按週執行
/// </summary>
Week
}
}