mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-01-11 02:55:27 +00:00
9 lines
274 B
C#
9 lines
274 B
C#
using System.Threading.Tasks;
|
|
using Lib.Net.Http.WebPush;
|
|
|
|
namespace PodNoms.Api.Services.Push {
|
|
public interface IPushNotificationService {
|
|
string PublicKey { get; }
|
|
Task SendNotificationAsync(PushSubscription subscription, PushMessage message);
|
|
}
|
|
} |