using Govor.Application.Interfaces.PushNotifications; using Govor.Application.Interfaces.PushNotifications.Models; namespace Govor.Application.Services.PushNotifications.Providers; public class NullPushProvider : IPushNotificationProvider { public string Name => "NULL"; public Task SendToTokenAsync(string token, PushMessage message) { throw new NotImplementedException(); } public Task SendMulticastAsync(IReadOnlyList tokens, PushMessage message) { throw new NotImplementedException(); } }