10 lines
241 B
C#
10 lines
241 B
C#
using CommonSocketLibrary.Abstract;
|
|
|
|
namespace CommonSocketLibrary.Common
|
|
{
|
|
public interface IWebSocketHandler
|
|
{
|
|
int OperationCode { get; }
|
|
Task Execute<Data>(SocketClient<WebSocketMessage> sender, Data data);
|
|
}
|
|
} |