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