Add Support for Hub Actions Implementation ...

This commit is contained in:
2025-11-16 17:29:45 +03:30
parent a9d451b3ae
commit 3c09233329
4 changed files with 178 additions and 13 deletions
+16
View File
@@ -0,0 +1,16 @@
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
}
}