6 lines
93 B
C#
6 lines
93 B
C#
|
namespace DIP.ChatServer;
|
||
|
|
||
|
public interface IChatClient
|
||
|
{
|
||
|
void Receive(string message);
|
||
|
}
|