9 lines
163 B
C#

namespace DigitalData.Core.Abstractions.Security
{
public interface IAsymmetricKey
{
string Id { get; }
string Content { get; }
}
}