2
0

GithubLookupFactoryOptions.cs 338 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. namespace FastGithub.Scanner
  3. {
  4. /// <summary>
  5. /// 域名
  6. /// </summary>
  7. [Options("Lookup")]
  8. sealed class GithubLookupFactoryOptions
  9. {
  10. /// <summary>
  11. /// 反查的域名
  12. /// </summary>
  13. public HashSet<string> Domains { get; set; } = new();
  14. }
  15. }