6 lines
131 B
C#

namespace DigitalData.Auth.Abstractions;
public interface IAuthClient
{
void ReceiveMessage(string user, string message);
}