using System.Collections.Generic;
namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// Url with headers to purge.
///
public class ZonePurgeCachedUrlRequest
{
///
/// Defined headers to specifiy the purge request.
///
public Dictionary Headers { get; set; } = [];
///
/// The file url to purge.
///
public string Url { get; set; }
}
}