8 lines
180 B
C#
8 lines
180 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Duplicati.Library.Backend.Box;
|
|
|
|
public class ShortListResponse : FileList
|
|
{
|
|
[JsonProperty("order")] public OrderEntry[]? Order { get; set; }
|
|
} |