17 lines
		
	
	
		
			338 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			338 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
 | 
						|
namespace FastGithub.Scanner
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// 域名
 | 
						|
    /// </summary>
 | 
						|
    [Options("Lookup")]
 | 
						|
    sealed class GithubLookupFactoryOptions
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// 反查的域名
 | 
						|
        /// </summary>
 | 
						|
        public HashSet<string> Domains { get; set; } = new();
 | 
						|
    }
 | 
						|
}
 |