16 lines
377 B
C#
16 lines
377 B
C#
using System;
|
|
using Microsoft.Extensions.Logging;
|
|
using xPushService.Base;
|
|
using xWebinarService.Models.Entities;
|
|
|
|
namespace xWebinarService.Hubs
|
|
{
|
|
public class XWebinarEntityHub : XBaseEntityHub<XWebinar, Guid>
|
|
{
|
|
//
|
|
#region Constructor ...
|
|
public XWebinarEntityHub(ILogger<XBaseHub> logger) : base(logger)
|
|
{ }
|
|
#endregion
|
|
}
|
|
} |