Files
xWebinarService/Hub/XWebinarHub.cs
T
2025-11-05 06:37:09 +03:30

30 lines
709 B
C#

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;
}
}
}