Added DNS Records for Zone actions

This commit is contained in:
2024-11-11 10:23:19 +01:00
parent e561ad8ee7
commit 815c9e3e9d
38 changed files with 5581 additions and 69 deletions

View File

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