mirror of
https://github.com/duplicati/duplicati.git
synced 2025-11-28 19:40:25 +08:00
9 lines
No EOL
221 B
C#
9 lines
No EOL
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; }
|
|
} |