14 lines
294 B
C#
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
|
|
);
|
|
}
|
|
} |