6 lines
136 B
C#
6 lines
136 B
C#
namespace DigitalData.Auth.Abstractions;
|
|
|
|
public interface IAuthListenHandler
|
|
{
|
|
Task ReceiveKeyAsync(string topic, string key);
|
|
} |