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()}"; } /// /// 跳转链接 /// public string Url { get; set; } public string Raw { get; set; } } }