namespace AMWD.Net.Api.Cloudflare.Zones { /// /// How to flatten the cname destination. /// [Obsolete("Please use the DNS Settings route instead.")] public class CNAMEFlattening : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public CNAMEFlattening() { Id = ZoneSettingId.CNAMEFlattening; } /// /// Current value of the zone setting. /// [Obsolete("Please use the DNS Settings route instead.")] [JsonProperty("value")] public string? Value { get; set; } } }