using PaySharp.Alipay.Request; using PaySharp.Core.Response; namespace PaySharp.Alipay.Response { public class AppPayResponse : IResponse { public AppPayResponse(AppPayRequest request) { OrderInfo = request.GatewayData.ToUrl(); } /// /// 用于唤起App的订单参数 /// public string OrderInfo { get; set; } public string Raw { get; set; } } }