feat(IAsymmetricTokenDescriptor): Methode Validator.get mit Lazy Loading hinzugefügt.

This commit is contained in:
Developer 02
2025-01-10 23:32:53 +01:00
parent 39091ff5cf
commit b90a52412c
5 changed files with 27 additions and 6 deletions

View File

@@ -7,6 +7,8 @@ namespace DigitalData.Core.Abstractions.Security
/// </summary>
public interface IAsymmetricTokenDescriptor : IAsymmetricPrivateKey, IUniqueSecurityContext
{
IAsymmetricTokenValidator Validator { get; }
string? ApiRoute { get; }
#region SecurityTokenDescriptor Map

View File

@@ -0,0 +1,6 @@
namespace DigitalData.Core.Abstractions.Security
{
public interface IAsymmetricTokenValidator : IAsymmetricPublicKey
{
}
}