namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// Turn on or off the reordering of query strings. When query strings have the same
/// structure, caching improves.
///
public class SortQueryStringForCache : ZoneSettingBase
{
///
/// Initializes a new instance of the class.
///
public SortQueryStringForCache()
{
Id = ZoneSettingId.SortQueryStringForCache;
}
///
/// The status of Query String Sort.
///
[JsonProperty("value")]
public OnOffState? Value { get; set; }
}
}