Files
duplicati/Duplicati/Library/Backend/Box/Model/FileList.cs
T

11 lines
357 B
C#
Raw Normal View History

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; }
[JsonProperty("offset")] public long Offset { get; set; }
[JsonProperty("limit")] public long Limit { get; set; }
}