Preparing xPushService ...

This commit is contained in:
2026-05-16 01:14:19 +03:30
parent f929414b9f
commit af84871d10
11 changed files with 1625 additions and 33 deletions
+9
View File
@@ -0,0 +1,9 @@
using Microsoft.AspNetCore.SignalR;
namespace xPushService.Interfaces
{
public interface IXHubContextFactory
{
IHubContext<THub> Create<THub>() where THub : Hub;
}
}