using PaySharp.Core.Request; namespace PaySharp.Alipay.Response { public class ScanPayResponse : BaseResponse { /// /// 商户订单号 /// public string OutTradeNo { get; set; } /// /// 当前预下单请求生成的二维码码串,可以用二维码生成工具根据该码串值生成对应的二维码 /// public string QrCode { get; set; } internal override void Execute(Merchant merchant, Request request) { } } }