PaymentMethodEnum.cs 801 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Dfs.WayneChina.CardTrxManager.Support
  5. {
  6. /// <summary>
  7. /// Payment method enumeration
  8. /// </summary>
  9. public enum PaymentMethod
  10. {
  11. /// <summary>
  12. /// Cash payment
  13. /// </summary>
  14. CASH,
  15. /// <summary>
  16. /// AliPay payment
  17. /// </summary>
  18. ALIPAY,
  19. /// <summary>
  20. /// WeChatPay payment
  21. /// </summary>
  22. WECHAT,
  23. /// <summary>
  24. /// IC Card payment
  25. /// </summary>
  26. IC,
  27. /// <summary>
  28. /// Car plate bound account payment
  29. /// </summary>
  30. CarPlate = 100,
  31. /// <summary>
  32. /// Other payment methods
  33. /// </summary>
  34. OTHER = 0,
  35. }
  36. }