21 lines
		
	
	
		
			475 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			475 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
 | 
						|
namespace FastGithub.Configuration
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// FastGithub的配置
 | 
						|
    /// </summary>
 | 
						|
    public class FastGithubOptions
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// http代理端口
 | 
						|
        /// </summary>
 | 
						|
        public int HttpProxyPort { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 代理的域名配置
 | 
						|
        /// </summary>
 | 
						|
        public Dictionary<string, DomainConfig> DomainConfigs { get; set; } = new();
 | 
						|
    }
 | 
						|
}
 |