6 lines
162 B
C#
6 lines
162 B
C#
namespace DigitalData.Auth.Abstractions;
|
|
|
|
public interface IAuthListenHandler
|
|
{
|
|
Task ReceivePublicKeyAsync(string issuer, string audience, string value);
|
|
} |