mirror of
https://github.com/duplicati/duplicati.git
synced 2025-11-28 03:20:25 +08:00
12 lines
No EOL
373 B
C#
12 lines
No EOL
373 B
C#
namespace Duplicati.Library.Backend;
|
|
|
|
internal record TahoeNode
|
|
{
|
|
public string? RwUri { get; set; }
|
|
public string? VerifyUri { get; set; }
|
|
public string? RoUri { get; set; }
|
|
public Dictionary<string, TahoeEl>? Children { get; set; }
|
|
public bool Mutable { get; set; }
|
|
public long Size { get; set; }
|
|
public TahoeMetadata? Metadata { get; set; }
|
|
} |