WapPayResponse.cs 458 B

1234567891011121314151617181920
  1. using PaySharp.Alipay.Request;
  2. using PaySharp.Core.Response;
  3. namespace PaySharp.Alipay.Response
  4. {
  5. public class WapPayResponse : IResponse
  6. {
  7. public WapPayResponse(WapPayRequest request)
  8. {
  9. Url = $"{request.RequestUrl}&{request.GatewayData.ToUrl()}";
  10. }
  11. /// <summary>
  12. /// 跳转链接
  13. /// </summary>
  14. public string Url { get; set; }
  15. public string Raw { get; set; }
  16. }
  17. }