was added firebase nitifying

This commit is contained in:
Artemy
2026-03-01 16:48:06 +07:00
parent 76d7280c71
commit eab0d746b8
60 changed files with 2335 additions and 1149 deletions
@@ -0,0 +1,19 @@
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();
}
}