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