TerminateContractEnum.cs 266 B

12345678910111213141516
  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 TerminateContractEnum
  9. {
  10. All = 1,
  11. WorkOwner = 2,
  12. Employee = 3
  13. }
  14. }