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
+15
View File
@@ -0,0 +1,15 @@
using Microsoft.Extensions.Logging;
using xPushService.Base;
using xStringService.Models.Entities;
namespace xStringService.Hubs
{
public class XStringEntityHub : XBaseEntityHub<XString, int>
{
//
#region Constructor ...
public XStringEntityHub(ILogger<XBaseHub> logger) : base(logger)
{ }
#endregion
}
}