Files
xWebinarService/Interfaces/IXWebinarHub.cs
T
2025-11-05 05:07:24 +03:30

19 lines
472 B
C#

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
)
{ }
}
}