9 lines
224 B
C#
9 lines
224 B
C#
using CommonSocketLibrary.Abstract;
|
|
|
|
namespace CommonSocketLibrary.Common
|
|
{
|
|
public interface IWebSocketHandler : ICodedOperation
|
|
{
|
|
Task Execute<Data>(SocketClient<WebSocketMessage> sender, Data data);
|
|
}
|
|
} |