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