123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MTWorkHR.Core.Global
- {
- public enum ContractDurationEnum
- {
- Monthly = 1,
- Quarterly = 2,
- SemiAnnually = 3,
- Quarters3 = 4,
- Annually = 5
- }
- }
|