RepeatEnum.cs 311 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MTWorkHR.Core.Global
  7. {
  8. public enum RepeatEnum
  9. {
  10. None = 0,
  11. Daily = 1,
  12. Weekly = 2,
  13. Monthly = 3,
  14. Yearly = 4,
  15. Custom = 5
  16. }
  17. }