duplicati/Duplicati/Library/Backend/Box/Model/FolderList.cs
Kenneth Skovhede d665828a83 Re-implemented box.com on new version.
Removed some non-async methods on the JsonWebHelperHttpClient.
2025-03-24 17:14:21 +01:00

9 lines
No EOL
237 B
C#

using Newtonsoft.Json;
namespace Duplicati.Library.Backend.Box;
public class FolderList
{
[JsonProperty("total_count")] public long TotalCount { get; set; }
[JsonProperty("entries")] public MiniFolder[]? Entries { get; set; }
}