namespace AMWD.Net.Api.Cloudflare.Zones { /// /// A Cloudflare zone setting. /// public abstract class ZoneSettingBase { /// /// The ID of the zone setting. /// [JsonProperty("id")] public ZoneSettingId? Id { get; protected set; } /// /// Whether or not this setting can be modified for this zone (based on your Cloudflare plan level). /// [JsonProperty("editable")] public bool? Editable { get; set; } /// /// The last time this setting was modified. /// [JsonProperty("modified_on")] public DateTime? ModifiedOn { get; set; } } }