namespace AMWD.Net.Api.Cloudflare.Zones { /// /// HTTP/3 enabled for this zone. /// public class HTTP3 : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public HTTP3() { Id = ZoneSettingId.HTTP3; } /// /// Current value of the zone setting. /// [JsonProperty("value")] public OnOffState Value { get; set; } } }