inotify/Inotify/ThridPart/CorePush/Interfaces/IFcmSender.cs
2021-04-06 20:05:06 +08:00

12 lines
372 B
C#

using CorePush.Google;
using System.Threading;
using System.Threading.Tasks;
namespace CorePush.Interfaces
{
public interface IFcmSender
{
Task<FcmResponse> SendAsync(string deviceId, object payload, CancellationToken cancellationToken = default);
Task<FcmResponse> SendAsync(object payload, CancellationToken cancellationToken = default);
}
}