星火直播PC
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SocketCallback.cs 182B

12345678910
  1. using XHZB.Model;
  2. namespace XHZB.Desktop.WebSocket
  3. {
  4. public interface SocketCallback
  5. {
  6. void receiveWsMsg(SocketModel msg);
  7. void userListChange();
  8. }
  9. }