using System.Collections.Generic;
namespace FastGithub.Configuration
{
    /// 
    /// FastGithub的配置
    /// 
    public class FastGithubOptions
    {
        /// 
        /// http代理端口
        /// 
        public int HttpProxyPort { get; set; }
        /// 
        /// 代理的域名配置
        /// 
        public Dictionary DomainConfigs { get; set; } = new();
    }
}