Add "Registrar" extensions

This commit is contained in:
2025-06-24 10:53:00 +02:00
parent 6f27dd3ff8
commit 2fe9ac0657
8 changed files with 765 additions and 18 deletions

View File

@@ -0,0 +1,14 @@
namespace AMWD.Net.Api.Cloudflare.Zones.Internals
{
internal class InternalUpdateDomainRequest
{
[JsonProperty("auto_renew")]
public bool? AutoRenew { get; set; }
[JsonProperty("locked")]
public bool? Locked { get; set; }
[JsonProperty("privacy")]
public bool? Privacy { get; set; }
}
}