Added some Zone features

This commit is contained in:
2024-10-24 17:12:14 +02:00
parent 83620cb450
commit c6eb6ba05e
49 changed files with 3595 additions and 34 deletions

View File

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