using System;
namespace FastGithub
{
///
/// 域名配置
///
public class DomainConfig
{
///
/// 是否发送SNI
///
public bool TlsSni { get; set; }
///
/// 请求超时时长
///
public TimeSpan? Timeout { get; set; }
///
/// 目的地
/// 格式为相对或绝对uri
///
public Uri? Destination { get; set; }
}
}