namespace AMWD.Net.Api.Cloudflare.Zones { /// /// An allowlist of ciphers for TLS termination. These ciphers must be in the /// BoringSSL format. /// public class Ciphers : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public Ciphers() { Id = ZoneSettingId.Ciphers; } /// /// Current value of the zone setting. /// [JsonProperty("value")] public IReadOnlyCollection Value { get; set; } = []; } }