19 lines
472 B
C#
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
|
|
)
|
|
{ }
|
|
}
|
|
} |