GithubLookupFactoryOptions.cs 334 B

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