This commit is contained in:
2025-11-05 06:37:09 +03:30
parent 0b0083a479
commit e24ec4c283
2 changed files with 13 additions and 12 deletions
+30
View File
@@ -0,0 +1,30 @@
using xPushService.Base;
using xPushService.Interfaces;
using xPushService.Models;
namespace xWebinarService.Hub
{
public class XWebinarHub : XBaseWebRTCHub
{
protected XWebinarHub(
IXPushGroupStore groupStore,
IXPushConnectionStore connectionStore,
IXWebRTCConnectionStore webRTCConnectionStore
) : base(
groupStore,
connectionStore,
webRTCConnectionStore
)
{ }
public override XPushConnectionDto GetConnection()
{
//
var result = GetBaseConnection();
result.Type = GetType().Name;
//
return result;
}
}
}