using System;
using System.Collections.Generic;
namespace FastGithub.Configuration
{
    /// 
    /// FastGithub的配置
    /// 
    public class FastGithubOptions
    {
        /// 
        /// http代理端口
        /// 
        public int HttpProxyPort { get; set; } = 38457;
        /// 
        /// 回退的dns
        /// 
        public string[] FallbackDns { get; set; } = Array.Empty();
        /// 
        /// 代理的域名配置
        /// 
        public Dictionary DomainConfigs { get; set; } = new();
    }
}