TODO: Вынести маппинг модель -> grpc в отдельный слой Signed-off-by: Ivan Pchelintsev <i.pchelintsev@yadro.com>
17 lines
400 B
C#
17 lines
400 B
C#
using Google.Protobuf;
|
|
|
|
namespace FrostFS.SDK.Cryptography
|
|
{
|
|
public static class UUIDExtension
|
|
{
|
|
public static Guid ToUuid(this ByteString id)
|
|
{
|
|
return Guid.Parse(Convert.ToHexString(id.ToByteArray()));
|
|
}
|
|
|
|
public static byte[] ToBytes(this Guid id)
|
|
{
|
|
return Convert.FromHexString(id.ToString("N"));
|
|
}
|
|
}
|
|
}
|