Files
Govor/Govor.Application/Interfaces/PushNotifications/IPushNotificationProvider.cs
T
2026-03-01 16:48:06 +07:00

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);
}