9 lines
221 B
C#
9 lines
221 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Duplicati.Library.Backend.Box;
|
|
|
|
public class OrderEntry
|
|
{
|
|
[JsonProperty("by")] public string? By { get; set; }
|
|
[JsonProperty("direction")] public string? Direction { get; set; }
|
|
} |