Moving folder structure

This commit is contained in:
2025-07-10 10:12:50 +02:00
parent 450aa5f1c9
commit 29f6c4ae81
172 changed files with 109 additions and 162 deletions

View File

@@ -0,0 +1,25 @@
namespace AMWD.Net.Api.Cloudflare.Zones
{
/// <summary>
/// When enabled, Cloudflare will attempt to speed up overall page loads by serving
/// <c>103</c> responses with <c>Link</c> headers from the final response. Refer to
/// <see href="https://developers.cloudflare.com/cache/about/early-hints">Early Hints</see>
/// for more information.
/// </summary>
public class EarlyHints : ZoneSettingBase
{
/// <summary>
/// Initializes a new instance of the <see cref="EarlyHints"/> class.
/// </summary>
public EarlyHints()
{
Id = ZoneSettingId.EarlyHints;
}
/// <summary>
/// Current value of the zone setting.
/// </summary>
[JsonProperty("value")]
public OnOffState Value { get; set; }
}
}