山东雷驰
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
485 B

3 months ago
using Kean.Application.Query.ViewModels;
using System.Threading.Tasks;
namespace Kean.Application.Query.Interfaces
{
/// <summary>
/// 表示应用程序查询服务
/// </summary>
public interface IAppService
{
/// <summary>
/// 在黑名单中按地址查询结果
/// </summary>
/// <param name="address">地址</param>
/// <returns>查询结果</returns>
Task<Blacklist> GetBlacklist(string address);
}
}