- ReceiveMessage-Methode zu IAuthClientHandler verschoben - StartAsync-Methode zu IAuthClient hinzugefügt
6 lines
121 B
C#
6 lines
121 B
C#
namespace DigitalData.Auth.Abstractions;
|
|
|
|
public interface IAuthClient : IAuthClientHandler
|
|
{
|
|
Task StartAsync();
|
|
} |