Changed folder structure, added explicit nullable for extensions.

This commit is contained in:
2024-10-31 13:07:39 +01:00
parent eadd35ac09
commit 935632df27
45 changed files with 1121 additions and 214 deletions

View File

@@ -0,0 +1,25 @@
using System.Collections.Generic;
namespace AMWD.Net.Api.Cloudflare.Zones.Internals.Requests
{
internal class InternalPurgeCacheRequest
{
[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<PurgeUrlWithHeaders>? UrlsWithHeaders { get; set; }
}
}