using System.Collections.Generic; namespace FastGithub.Scanner { /// /// 域名 /// [Options("Lookup")] class GithubLookupFactoryOptions { /// /// 反查的域名 /// public HashSet Domains { get; set; } = new(); } }