using System.Collections.Generic;
using System.Threading.Tasks;
namespace FastGithub.Scanner
{
///
/// 定义域名的ip提值者
///
interface IDomainAddressProvider
{
///
/// 获取排序
///
int Order { get; }
///
/// 创建域名与ip的关系
///
///
Task> CreateDomainAddressesAsync();
}
}