Add "ZoneSettings" extensions
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
namespace AMWD.Net.Api.Cloudflare.Zones
|
||||
{
|
||||
/// <summary>
|
||||
/// Turn on or off <strong>Email Obfuscation</strong>.
|
||||
/// </summary>
|
||||
public class EmailObfuscation : ZoneSettingBase
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="EmailObfuscation"/> class.
|
||||
/// </summary>
|
||||
public EmailObfuscation()
|
||||
{
|
||||
Id = ZoneSettingId.EmailObfuscation;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Current value of the zone setting.
|
||||
/// </summary>
|
||||
[JsonProperty("value")]
|
||||
public OnOffState? Value { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user