add some new features in data service ...

This commit is contained in:
2026-05-15 19:41:43 +03:30
parent 35e1e08d50
commit f929414b9f
15 changed files with 1826 additions and 34 deletions
+10 -1
View File
@@ -1,5 +1,14 @@
using System.Threading;
using System.Threading.Tasks;
namespace xPushService.Interfaces
{
public interface IXBaseHub
{ }
{
Task SendCustomAction(
string actionName,
string payLoad,
CancellationToken cancellationToken = default
);
}
}