|
1234567891011121314151617 |
- using Microsoft.AspNetCore.Mvc;
- using System.Threading.Tasks;
-
- namespace BPA.KitChen.WeChat.WechatServer.Service
- {
- public interface IWechatNotityService
- {
- /// <summary>
- /// 支付回调
- /// </summary>
- Task<IActionResult> PayNotity();
- /// <summary>
- /// 退款回调
- /// </summary>
- Task<IActionResult> RefundNotity();
- }
- }
|