using System.Collections.Generic;
using System.Threading.Tasks;
namespace Essensoft.AspNetCore.Payment.Alipay
{
///
/// Alipay 通知解析客户端。
///
public interface IAlipayNotifyClient
{
///
/// 执行 Alipay 通知请求解析。
///
/// 领域对象
/// 通知参数
/// 配置选项
/// 领域对象
Task ExecuteAsync(IDictionary parameters, AlipayOptions options) where T : AlipayNotify;
}
}