Add "ZoneSettings" extensions
This commit is contained in:
22
Extensions/Cloudflare.Zones/Models/Settings/RocketLoader.cs
Normal file
22
Extensions/Cloudflare.Zones/Models/Settings/RocketLoader.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
namespace AMWD.Net.Api.Cloudflare.Zones
|
||||
{
|
||||
/// <summary>
|
||||
/// Turn on or off Rocket Loader in the Cloudflare Speed app.
|
||||
/// </summary>
|
||||
public class RocketLoader : ZoneSettingBase
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="RocketLoader"/> class.
|
||||
/// </summary>
|
||||
public RocketLoader()
|
||||
{
|
||||
Id = ZoneSettingId.RocketLoader;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The status of Rocket Loader.
|
||||
/// </summary>
|
||||
[JsonProperty("value")]
|
||||
public OnOffState? Value { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user