Added some Zone features
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace AMWD.Net.Api.Cloudflare.Zones.Cache.InternalRequests
|
||||
{
|
||||
internal class PurgeRequest
|
||||
{
|
||||
[JsonProperty("purge_everything")]
|
||||
public bool? PurgeEverything { get; set; }
|
||||
|
||||
[JsonProperty("tags")]
|
||||
public IList<string> Tags { get; set; }
|
||||
|
||||
[JsonProperty("hosts")]
|
||||
public IList<string> Hostnames { get; set; }
|
||||
|
||||
[JsonProperty("prefixes")]
|
||||
public IList<string> Prefixes { get; set; }
|
||||
|
||||
[JsonProperty("files")]
|
||||
public IList<string> Urls { get; set; }
|
||||
|
||||
[JsonProperty("files")]
|
||||
public IList<UrlWithHeaders> UrlsWithHeaders { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user