mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 19:54:55 +00:00
14 lines
393 B
C#
14 lines
393 B
C#
using Govor.Application.Interfaces.PushNotifications.Models;
|
|
|
|
namespace Govor.Application.Interfaces.PushNotifications;
|
|
|
|
public interface IPushNotificationProvider
|
|
{
|
|
string Name { get; }
|
|
|
|
Task<SendPushResult> SendToTokenAsync(string token, PushMessage message);
|
|
|
|
Task<SendPushResult> SendMulticastAsync(
|
|
IReadOnlyList<string> tokens,
|
|
PushMessage message);
|
|
} |