using System; namespace FastGithub.Scanner.LookupProviders { /// /// 公共dns的域名与ip关系提供者选项 /// [Options("Github:Lookup:PublicDnsProvider")] sealed class PublicDnsProviderOptions { /// /// 是否启用 /// public bool Enable { get; set; } = true; /// /// dns列表 /// public string[] Dnss { get; set; } = Array.Empty(); } }