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