StoreName.cs 518 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. /// <summary>
  6. /// 定义支付商店名字
  7. /// </summary>
  8. public enum StoreName
  9. {
  10. None=0,
  11. GooglePlay = 1,
  12. AmazonAppStore = 2,
  13. CloudMoolah = 3,
  14. SamsungApps = 4,
  15. XiaomiMiPay = 5,
  16. MacAppStore = 6,
  17. AppleAppStore = 7,
  18. WinRT = 8,
  19. TizenStore = 9,
  20. FacebookStore = 10,
  21. WX = 11,
  22. AliPay = 12, //支付宝
  23. IAppPay = 13, //爱贝
  24. m4399 = 14,//4399
  25. OPPO = 15,
  26. VIVO = 16,
  27. }