Add "ZoneSubscriptions" extensions

This commit is contained in:
2025-07-09 09:29:31 +02:00
parent a916d49b11
commit 450aa5f1c9
9 changed files with 411 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace AMWD.Net.Api.Cloudflare.Zones.Internals
{
internal class InternalUpdateZoneSubscriptionRequest
{
[JsonProperty("frequency")]
public RenewFrequency? Frequency { get; set; }
[JsonProperty("rate_plan")]
public RatePlan? RatePlan { get; set; }
}
}