12345678910111213141516 |
- using PaySharp.Core.Request;
- namespace PaySharp.Wechatpay.Response
- {
- public class CancelResponse : BaseResponse
- {
- /// <summary>
- /// 是否重调
- /// </summary>
- public string Recall { get; set; }
- internal override void Execute<TModel, TResponse>(Merchant merchant, Request<TModel, TResponse> request)
- {
- }
- }
- }
|