namespace AMWD.Net.Api.Cloudflare.Zones { /// /// Enhance your website's font delivery with Cloudflare Fonts. Deliver Google /// Hosted fonts from your own domain, boost performance, and enhance user privacy. /// Refer to the Cloudflare Fonts documentation for more information. /// public class FontSettings : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public FontSettings() { Id = ZoneSettingId.FontSettings; } /// /// Current value of the zone setting. /// [JsonProperty("value")] public OnOffState? Value { get; set; } } }