namespace AMWD.Net.Api.Cloudflare.Zones { /// /// Extra Cloudflare-specific information about the record. /// public class DnsRecordMeta { /// /// Whether the record was automatically added. /// [JsonProperty("auto_added")] public bool AutoAdded { get; set; } /// /// Whether the record is managed by apps. /// [JsonProperty("managed_by_apps")] public bool ManagedByApps { get; set; } /// /// Whether the record is managed by argo tunnel. /// [JsonProperty("managed_by_argo_tunnel")] public bool ManagedByArgoTunnel { get; set; } } }