Files
Cleanuparr/code/backend/Cleanuparr.Infrastructure/Features/Notifications/Pushover/IPushoverProxy.cs
2025-12-13 21:24:34 +02:00

7 lines
158 B
C#

namespace Cleanuparr.Infrastructure.Features.Notifications.Pushover;
public interface IPushoverProxy
{
Task SendNotification(PushoverPayload payload);
}