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