1234567891011121314151617181920 |
- 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);
- }
- /// <summary>
- /// 生成的Html网页
- /// </summary>
- public string Html { get; set; }
- public string Raw { get; set; }
- }
- }
|