Files
xPushService/Interfaces/IXBaseHub.cs
T

14 lines
294 B
C#

using System.Threading;
using System.Threading.Tasks;
namespace xPushService.Interfaces
{
public interface IXBaseHub
{
Task SendCustomAction(
string actionName,
string payLoad,
CancellationToken cancellationToken = default
);
}
}