using System.Text.Json.Serialization;
namespace Cleanuparr.Domain.Enums;
///
/// Sorting fields available for search event listings.
///
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum SearchEventsSortBy
{
/// Sort by the event timestamp.
Timestamp,
/// Sort by the item title associated with the search.
Title,
/// Sort by the search command status.
Status,
/// Sort by the search type (proactive, replacement, etc.).
Type,
}