All checks were successful
DCO / DCO (pull_request) Successful in 33s
Signed-off-by: Pavel Gross <p.gross@yando.com>
10 lines
225 B
C#
10 lines
225 B
C#
using System.Security.Cryptography;
|
|
|
|
namespace FrostFS.SDK.ClientV2;
|
|
|
|
public class Credentials(ECDsa key, FrostFsOwner ownerId)
|
|
{
|
|
public ECDsa Key { get; } = key;
|
|
|
|
public FrostFsOwner OwnerId { get; } = ownerId;
|
|
}
|