12345678910111213141516171819202122 |
- using Aop.Api;
- using Fuel.Payment.Core.Models;
- using Fuel.Payment.Core.Models.AllInPay;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Wechat.PayAPI;
- namespace Fuel.Infrastructure.Payment
- {
- public class GenericProcessResponse
- {
- public AopResponse AopResponse { get; set; }
- public WxPayData WeChatResponse { get; set; }
- public Dictionary<string, string> AllInPayResponse { get; set; }
- public TongLianResponseV2 AllInPayResponseV2 { get; set; }
- public ElectronicOrderModel electronicOrderModel { get; set; }
- public List<ElectronicOrderProcessResultModel> ProcessResults { get; set; }
- }
- }
|