1234567891011121314151617181920 |
- using PaySharp.Alipay.Request;
- using PaySharp.Core.Response;
- namespace PaySharp.Alipay.Response
- {
- public class WapPayResponse : IResponse
- {
- public WapPayResponse(WapPayRequest request)
- {
- Url = $"{request.RequestUrl}&{request.GatewayData.ToUrl()}";
- }
- /// <summary>
- /// 跳转链接
- /// </summary>
- public string Url { get; set; }
- public string Raw { get; set; }
- }
- }
|