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