Added DNS Records for Zone actions
This commit is contained in:
26
Extensions/Cloudflare.Zones/Models/DnsRecordMeta.cs
Normal file
26
Extensions/Cloudflare.Zones/Models/DnsRecordMeta.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user