mirror of
https://github.com/duplicati/duplicati.git
synced 2025-11-28 19:40:25 +08:00
11 lines
No EOL
357 B
C#
11 lines
No EOL
357 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Duplicati.Library.Backend.Box;
|
|
|
|
public class FileList
|
|
{
|
|
[JsonProperty("total_count")] public long TotalCount { get; set; }
|
|
[JsonProperty("entries")] public FileEntity[]? Entries { get; set; }
|
|
[JsonProperty("offset")] public long Offset { get; set; }
|
|
[JsonProperty("limit")] public long Limit { get; set; }
|
|
} |