This commit is contained in:
2025-11-16 15:58:48 +03:30
parent d5a048f661
commit 9b3cec02c2
7 changed files with 427 additions and 59 deletions
+15
View File
@@ -0,0 +1,15 @@
using Microsoft.Extensions.Logging;
using xPushService.Base;
using xStringService.Models.Entities;
namespace xStringService.Hubs
{
public class XStringHub : XBaseEntityHub<XString, int>
{
//
#region Constructor ...
public XStringHub(ILogger<XBaseHub> logger) : base(logger)
{ }
#endregion
}
}