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