namespace AMWD.Net.Api.Cloudflare.Zones { /// /// When enabled, Cloudflare serves limited copies of web pages available from the /// Internet Archive's Wayback Machine /// if your server is offline. /// Refer to Always Online /// for more information. /// public class AlwaysOnline : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public AlwaysOnline() { Id = ZoneSettingId.AlwaysOnline; } /// /// Current value of the zone setting. /// [JsonProperty("value")] public OnOffState Value { get; set; } } }