22 lines
		
	
	
		
			573 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			573 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
 | 
						|
namespace FastGithub.Scanner.LookupProviders
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Github公开的域名与ip关系提供者选项
 | 
						|
    /// </summary>
 | 
						|
    [Options("Github:Lookup:GithubMetaProvider")]
 | 
						|
    sealed class GithubMetaProviderOptions
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// 是否启用
 | 
						|
        /// </summary>
 | 
						|
        public bool Enable { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// meta请求uri
 | 
						|
        /// </summary>
 | 
						|
        public Uri MetaUri { get; set; } = new Uri("https://gitee.com/jiulang/fast-github/raw/master/FastGithub/meta.json");
 | 
						|
    }
 | 
						|
}
 |