using System;
using System.Collections.Generic;
namespace FastGithub.Configuration
{
///
/// FastGithub的配置
///
public class FastGithubOptions
{
///
/// 监听配置
///
public ListenConfig Listen { get; set; } = new ListenConfig();
///
/// 回退的dns
///
public DnsConfig[] FallbackDns { get; set; } = Array.Empty();
///
/// 代理的域名配置
///
public Dictionary DomainConfigs { get; set; } = new();
}
}