2025-03-20 15:23:31 -03:00
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
namespace Duplicati.Library.Backend.Box;
|
|
|
|
|
|
|
|
|
|
public class FileList
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("total_count")] public long TotalCount { get; set; }
|
2025-03-24 17:14:21 +01:00
|
|
|
[JsonProperty("entries")] public FileEntity[]? Entries { get; set; }
|
2025-03-20 15:23:31 -03:00
|
|
|
[JsonProperty("offset")] public long Offset { get; set; }
|
|
|
|
|
[JsonProperty("limit")] public long Limit { get; set; }
|
|
|
|
|
}
|