16 lines
423 B
C#
16 lines
423 B
C#
using System;
|
|
using Microsoft.Extensions.Logging;
|
|
using xPushService.Base;
|
|
using xWebinarService.Interfaces.Entities;
|
|
using xWebinarService.Models.Entities;
|
|
|
|
namespace xWebinarService.Providers.Entities
|
|
{
|
|
public class XWebinarEntityHub : XBaseEntityHub<XWebinar, Guid>, IXWebinarEntityHub
|
|
{
|
|
public XWebinarEntityHub(
|
|
ILogger<XWebinarEntityHub> logger
|
|
) : base(logger)
|
|
{ }
|
|
}
|
|
} |