using System; namespace AMWD.Net.Api.Cloudflare.Zones { /// /// A zone hold. /// public class ZoneHold { /// /// Gets or sets a value indicating whether the zone is on hold. /// [JsonProperty("hold")] public bool Hold { get; set; } /// /// Gets or sets an information whether subdomains are included in the hold. /// [JsonProperty("include_subdomains")] public string? IncludeSubdomains { get; set; } /// /// Gets or sets the time after which the zone is no longer on hold. /// [JsonProperty("hold_after")] public DateTime HoldAfter { get; set; } } }