duplicati/Duplicati/Library/Backend/Box/Model/MiniFolder.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

11 lines
No EOL
364 B
C#

using Newtonsoft.Json;
namespace Duplicati.Library.Backend.Box;
public class MiniFolder : IDReference
{
[JsonProperty("type")] public string? Type { get; set; }
[JsonProperty("name")] public string? Name { get; set; }
[JsonProperty("etag")] public string? ETag { get; set; }
[JsonProperty("sequence_id")] public string? SequenceID { get; set; }
}