Last Works on Webinar ...

This commit is contained in:
2025-11-05 05:07:24 +03:30
parent 330201023b
commit 0b0083a479
12 changed files with 1380 additions and 19 deletions
+19
View File
@@ -0,0 +1,19 @@
using xPushService.Base;
using xPushService.Interfaces;
namespace xWebinarService.Interfaces
{
public abstract class XWebinarHub : XBaseWebRTCHub
{
protected XWebinarHub(
IXPushGroupStore groupStore,
IXPushConnectionStore connectionStore,
IXWebRTCConnectionStore webRTCConnectionStore
) : base(
groupStore,
connectionStore,
webRTCConnectionStore
)
{ }
}
}