FastGithub/FastGithub.Scanner/GithubLookupFactoryOptions.cs
2021-07-14 01:16:20 +08:00

17 lines
327 B
C#

using System;
namespace FastGithub.Scanner
{
/// <summary>
/// 域名
/// </summary>
[Options("Lookup")]
public class GithubLookupFactoryOptions
{
/// <summary>
/// 反查的域名
/// </summary>
public string[] Domains { get; set; } = Array.Empty<string>();
}
}