namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// Add an Alt-Svc header to all legitimate requests from Tor, allowing the
/// connection to use our onion services instead of exit nodes.
///
public class OpportunisticOnion : ZoneSettingBase
{
///
/// Initializes a new instance of the class.
///
public OpportunisticOnion()
{
Id = ZoneSettingId.OpportunisticOnion;
}
///
/// Current value of the zone setting.
///
[JsonProperty("value")]
public OnOffState? Value { get; set; }
}
}