mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 19:54:55 +00:00
19 lines
584 B
C#
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();
|
|
}
|
|
} |