using System; namespace FastGithub { /// /// 域名配置 /// public class DomainConfig { /// /// 是否不发送SNI /// public bool NoSni { get; set; } = true; /// /// 目的地 /// 格式为相对或绝对uri /// public Uri? Destination { get; set; } } }