9 lines
186 B
C#
9 lines
186 B
C#
using Microsoft.AspNetCore.SignalR;
|
|
|
|
namespace xPushService.Interfaces
|
|
{
|
|
public interface IXHubContextFactory
|
|
{
|
|
IHubContext<THub> Create<THub>() where THub : Hub;
|
|
}
|
|
} |