AppPayResponse.cs 462 B

1234567891011121314151617181920
  1. using PaySharp.Alipay.Request;
  2. using PaySharp.Core.Response;
  3. namespace PaySharp.Alipay.Response
  4. {
  5. public class AppPayResponse : IResponse
  6. {
  7. public AppPayResponse(AppPayRequest request)
  8. {
  9. OrderInfo = request.GatewayData.ToUrl();
  10. }
  11. /// <summary>
  12. /// 用于唤起App的订单参数
  13. /// </summary>
  14. public string OrderInfo { get; set; }
  15. public string Raw { get; set; }
  16. }
  17. }