Add 'DNS Zone Settings' implementation

This commit is contained in:
2025-07-29 11:06:07 +02:00
parent 50b8efbb46
commit e49e975388
11 changed files with 882 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
namespace AMWD.Net.Api.Cloudflare.Dns
{
/// <summary>
/// Settings for this internal zone.
/// </summary>
public class DnsZoneInternalDns
{
/// <summary>
/// The ID of the zone to fallback to.
/// </summary>
[JsonProperty("reference_zone_id")]
public string? ReferenceZoneId { get; set; }
}
}