8 lines
146 B
C#
8 lines
146 B
C#
namespace DigitalData.Core.Abstractions.Security.Key;
|
|
|
|
public interface IAsymmetricKey
|
|
{
|
|
string? Id { get; }
|
|
|
|
string Content { get; }
|
|
} |