CancelResponse.cs 381 B

12345678910111213141516
  1. using PaySharp.Core.Request;
  2. namespace PaySharp.Wechatpay.Response
  3. {
  4. public class CancelResponse : BaseResponse
  5. {
  6. /// <summary>
  7. /// 是否重调
  8. /// </summary>
  9. public string Recall { get; set; }
  10. internal override void Execute<TModel, TResponse>(Merchant merchant, Request<TModel, TResponse> request)
  11. {
  12. }
  13. }
  14. }