ScanPayResponse.cs 608 B

123456789101112131415161718192021
  1. using PaySharp.Core.Request;
  2. namespace PaySharp.Alipay.Response
  3. {
  4. public class ScanPayResponse : BaseResponse
  5. {
  6. /// <summary>
  7. /// 商户订单号
  8. /// </summary>
  9. public string OutTradeNo { get; set; }
  10. /// <summary>
  11. /// 当前预下单请求生成的二维码码串,可以用二维码生成工具根据该码串值生成对应的二维码
  12. /// </summary>
  13. public string QrCode { get; set; }
  14. internal override void Execute<TModel, TResponse>(Merchant merchant, Request<TModel, TResponse> request)
  15. {
  16. }
  17. }
  18. }