14 lines
308 B
C#
14 lines
308 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AMWD.Net.Api.Cloudflare.Zones.Internals.Requests
|
|
{
|
|
internal class PurgeUrlWithHeaders
|
|
{
|
|
[JsonProperty("headers")]
|
|
public Dictionary<string, string> Headers { get; set; } = [];
|
|
|
|
[JsonProperty("url")]
|
|
public string? Url { get; set; }
|
|
}
|
|
}
|