FastGithub/FastGithub.Scanner/LookupProviders/PublicDnsProviderOptions.cs
2021-06-19 13:27:34 +08:00

13 lines
288 B
C#

using System;
namespace FastGithub.Scanner.LookupProviders
{
[Options("Github:Lookup:PublicDnsProvider")]
sealed class PublicDnsProviderOptions
{
public bool Enable { get; set; } = true;
public string[] Dnss { get; set; } = Array.Empty<string>();
}
}