Added ZoneTransfer implementation

This commit is contained in:
2025-10-28 21:10:24 +01:00
parent 6eed338ea8
commit 591b2f8899
51 changed files with 4176 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace AMWD.Net.Api.Cloudflare.Dns.Internals
{
internal class InternalPrimaryZoneConfigurationRequest
{
[JsonProperty("name")]
public string? Name { get; set; }
[JsonProperty("peers")]
public IReadOnlyCollection<string>? Peers { get; set; }
}
}