Files
podnoms/server/Services/Push/IPushNotificationService.cs
2018-03-21 20:36:09 +00:00

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