namespace AMWD.Net.Api.Cloudflare.Zones { /// /// Enable IPv6 on all subdomains that are Cloudflare enabled. /// (). /// public class IPV6 : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public IPV6() { Id = ZoneSettingId.IPV6; } /// /// Current value of the zone setting. /// [JsonProperty("value")] public OnOffState Value { get; set; } } }