Add Support for Hub Action Implementation ...

This commit is contained in:
2025-11-16 17:30:15 +03:30
parent 9b3cec02c2
commit 13cd3ed511
4 changed files with 20 additions and 21 deletions
@@ -4,11 +4,11 @@ using xStringService.Models.Entities;
namespace xStringService.Hubs
{
public class XStringHub : XBaseEntityHub<XString, int>
public class XStringEntityHub : XBaseEntityHub<XString, int>
{
//
#region Constructor ...
public XStringHub(ILogger<XBaseHub> logger) : base(logger)
public XStringEntityHub(ILogger<XBaseHub> logger) : base(logger)
{ }
#endregion
}