IChatClient.cs 140 B

12345678
  1. namespace OASystem.API.OAMethodLib.Hub.HubClients
  2. {
  3. public interface IChatClient
  4. {
  5. Task SendAll(object message);
  6. }
  7. }