Files
Govor/Govor.Application/Services/PushNotifications/Providers/NullPushProvider.cs
T
2026-03-01 16:48:06 +07:00

19 lines
584 B
C#

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<SendPushResult> SendToTokenAsync(string token, PushMessage message)
{
throw new NotImplementedException();
}
public Task<SendPushResult> SendMulticastAsync(IReadOnlyList<string> tokens, PushMessage message)
{
throw new NotImplementedException();
}
}