mirror of
https://github.com/duplicati/duplicati.git
synced 2025-11-28 19:40:25 +08:00
11 lines
No EOL
364 B
C#
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; }
|
|
} |