mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-01-10 18:46:03 +00:00
11 lines
391 B
C#
11 lines
391 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Lib.Net.Http.WebPush;
|
|
|
|
namespace PodNoms.Api.Services.Push {
|
|
public interface IPushSubscriptionStore {
|
|
Task StoreSubscriptionAsync(PushSubscription subscription);
|
|
Task ForEachSubscriptionAsync(string uid, Action<PushSubscription> action);
|
|
Task ForEachSubscriptionAsync(Action<PushSubscription> action);
|
|
}
|
|
} |