fix(IAuthClient): umbenannt in IAuthClient

This commit is contained in:
Developer 02
2025-01-23 15:38:24 +01:00
parent f562690b19
commit 6245a94f43
2 changed files with 2 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
namespace DigitalData.Auth.Abstractions;
public interface IAuthClient
{
Task ReceiveMessage(string user, string message);
Task<string> GetMessage();
}