Enums.cs 302 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 PTMedicalInsurance.Variables
  7. {
  8. public enum OperationType
  9. {
  10. SettlementOP = 0,
  11. RegisterOP = 1,
  12. PaymentQuery =2,
  13. CreateCard =3
  14. }
  15. }