Files
xPushService/Interfaces/IXHubContextFactory.cs
T
2026-05-16 01:14:19 +03:30

9 lines
186 B
C#

using Microsoft.AspNetCore.SignalR;
namespace xPushService.Interfaces
{
public interface IXHubContextFactory
{
IHubContext<THub> Create<THub>() where THub : Hub;
}
}