Implement XFile Provider ...

This commit is contained in:
2025-12-07 16:01:07 +03:30
parent 5a4ac15f31
commit ce846b3f68
5 changed files with 1348 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
using System;
using Microsoft.Extensions.Logging;
using xFileService.Models.Entities;
using xPushService.Base;
namespace xFileService.Hubs
{
public class XFileEntityHub : XBaseEntityHub<XFile, Guid>
{
//
#region Constructor ...
public XFileEntityHub(ILogger<XBaseHub> logger) : base(logger)
{ }
#endregion
}
}