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