namespace FastGithub { /// /// 域名配置 /// public class DomainConfig { /// /// 是否不发送SNI /// public bool NoSni { get; set; } = true; /// /// 目的地 /// 支持ip或域名 /// 留空则本域名 /// public string? Destination { get; set; } } }