using Govor.Application.Interfaces.PushNotifications.Models; namespace Govor.Application.Interfaces.PushNotifications; public interface IPushNotificationProvider { string Name { get; } Task SendToTokenAsync(string token, PushMessage message); Task SendMulticastAsync( IReadOnlyList tokens, PushMessage message); }