using CommonSocketLibrary.Abstract; namespace CommonSocketLibrary.Common { public interface IWebSocketHandler { int OperationCode { get; } Task Execute(SocketClient sender, Data data); } }