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.
 
 
 

18 lines
396 B

using System.Threading.Tasks;
using Znyc.Admin.Security.Entitys;
namespace Znyc.Admin.WebApi.Auth
{
/// <summary>
/// 定时任务
/// </summary>
public interface IApiHandler
{
/// <summary>
///
/// </summary>
/// <param name="apiUrl"></param>
/// <returns></returns>
public Task<Api> ValidateAsync(string apiUrl);
}
}