Implemented Core client

This commit is contained in:
2024-10-23 21:00:23 +02:00
parent 3c8d5137ff
commit 83620cb450
43 changed files with 4218 additions and 2 deletions

View File

@@ -0,0 +1,24 @@
using System.Runtime.Serialization;
using Newtonsoft.Json.Converters;
namespace AMWD.Net.Api.Cloudflare
{
/// <summary>
/// The direction to order the entity.
/// </summary>
[JsonConverter(typeof(StringEnumConverter))]
public enum OrderDirection
{
/// <summary>
/// Order in ascending order.
/// </summary>
[EnumMember(Value = "asc")]
Asc = 1,
/// <summary>
/// Order in descending order.
/// </summary>
[EnumMember(Value = "desc")]
Desc = 2
}
}