mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-05-09 07:13:59 -04:00
16 lines
338 B
C#
16 lines
338 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Cleanuparr.Domain.Enums;
|
|
|
|
/// <summary>
|
|
/// Direction used when ordering a result set.
|
|
/// </summary>
|
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
|
public enum SortDirection
|
|
{
|
|
/// <summary>Ascending order.</summary>
|
|
Asc,
|
|
/// <summary>Descending order.</summary>
|
|
Desc,
|
|
}
|