frostfs-sdk-csharp/src/FrostFS.SDK.ClientV2/Mappers/GRPC/ContainerId.cs
Pavel Gross 545e647d7b [#4] infrastructure and sample Client Cut
Signed-off-by: Pavel Gross <p.gross@yadro.com>
2024-06-10 11:31:36 +03:00

17 lines
No EOL
403 B
C#

using FrostFS.Refs;
using FrostFS.SDK.Cryptography;
using FrostFS.SDK.ModelsV2;
using Google.Protobuf;
namespace FrostFS.SDK.ClientV2.Mappers.GRPC;
public static class ContainerIdMapper
{
public static ContainerID ToGrpcMessage(this ContainerId containerId)
{
return new ContainerID
{
Value = ByteString.CopyFrom(Base58.Decode(containerId.Value))
};
}
}