using PaySharp.Alipay.Request; using PaySharp.Core.Response; namespace PaySharp.Alipay.Response { public class WebPayResponse : IResponse { public WebPayResponse(WebPayRequest request) { Html = request.GatewayData.ToForm(request.RequestUrl); } /// /// 生成的Html网页 /// public string Html { get; set; } public string Raw { get; set; } } }