feat(ISecurityIdentifier): Wird als Basisbezeichner in den Sicherheitsklassen erstellt.

This commit is contained in:
Developer 02 2024-12-20 14:11:16 +01:00
parent dbecfa92f4
commit 9953bbd2ef

View File

@ -0,0 +1,9 @@
namespace DigitalData.Core.Abstractions.Security
{
public interface ISecurityIdentifier
{
public string Issuer { get; }
public string Audience { get; }
}
}