16 lines
342 B
C#
16 lines
342 B
C#
using Microsoft.AspNetCore.SignalR;
|
|
|
|
namespace Shared.Models
|
|
{
|
|
public interface ISoks
|
|
{
|
|
IHubCallerClients AllClients { get; }
|
|
|
|
void WebLog(string message, string plugin);
|
|
|
|
Task EventsAsync(string connectionId, string uid, string name, string data);
|
|
|
|
int CountWeblogClients { get; }
|
|
}
|
|
}
|