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;
|
|
}
|