[#23] Client: Refactoring to optimize memory usage
Signed-off-by: Pavel Gross <p.gross@yando.com>
This commit is contained in:
parent
1a02ac2ae7
commit
6562aa27a5
141 changed files with 1722 additions and 896 deletions
24
src/FrostFS.SDK.ClientV2/Models/Object/FrostFsSplit.cs
Normal file
24
src/FrostFS.SDK.ClientV2/Models/Object/FrostFsSplit.cs
Normal file
|
@ -0,0 +1,24 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace FrostFS.SDK;
|
||||
|
||||
public class FrostFsSplit(SplitId splitId)
|
||||
{
|
||||
public FrostFsSplit() : this(new SplitId())
|
||||
{
|
||||
}
|
||||
|
||||
public SplitId SplitId { get; private set; } = splitId;
|
||||
|
||||
public FrostFsObjectId? Parent { get; set; }
|
||||
|
||||
public FrostFsObjectId? Previous { get; set; }
|
||||
|
||||
public FrostFsSignature? ParentSignature { get; set; }
|
||||
|
||||
public FrostFsObjectHeader? ParentHeader { get; set; }
|
||||
|
||||
public List<FrostFsObjectId> Children { get; } = [];
|
||||
|
||||
public Refs.Signature ParentSignatureGrpc { get; set; }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue