12345678910111213141516 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MTWorkHR.Core.Global
- {
- public enum TerminateContractEnum
- {
- All = 1,
- WorkOwner = 2,
- Employee = 3
- }
- }
|