namespace AMWD.Net.Api.Cloudflare.Zones { /// /// Only allows TLS1.2. /// public class TLS1_2Only : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public TLS1_2Only() { Id = ZoneSettingId.TLS1_2Only; } /// /// Current value of the zone setting. /// [JsonProperty("value")] public OnOffState Value { get; set; } } }