12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MTWorkHR.Core.Global
- {
- public enum RepeatEnum
- {
- None = 0,
- Daily = 1,
- Weekly = 2,
- Monthly = 3,
- Yearly = 4,
- Custom = 5
- }
- }
|