10 lines
205 B
C#
10 lines
205 B
C#
namespace DigitalData.Auth.Abstractions;
|
|
|
|
public interface IAuthClient : IAuthListenHandler, IAuthSenderHandler
|
|
{
|
|
bool IsConnected { get; }
|
|
|
|
Task StartAsync();
|
|
|
|
Task<bool> TryStartAsync();
|
|
} |