GenericProcessResponse.cs 726 B

12345678910111213141516171819202122
  1. using Aop.Api;
  2. using Fuel.Payment.Core.Models;
  3. using Fuel.Payment.Core.Models.AllInPay;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using Wechat.PayAPI;
  10. namespace Fuel.Infrastructure.Payment
  11. {
  12. public class GenericProcessResponse
  13. {
  14. public AopResponse AopResponse { get; set; }
  15. public WxPayData WeChatResponse { get; set; }
  16. public Dictionary<string, string> AllInPayResponse { get; set; }
  17. public TongLianResponseV2 AllInPayResponseV2 { get; set; }
  18. public ElectronicOrderModel electronicOrderModel { get; set; }
  19. public List<ElectronicOrderProcessResultModel> ProcessResults { get; set; }
  20. }
  21. }