mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-06 04:47:50 -05:00
7 lines
158 B
C#
7 lines
158 B
C#
namespace Cleanuparr.Infrastructure.Features.Notifications.Pushover;
|
|
|
|
public interface IPushoverProxy
|
|
{
|
|
Task SendNotification(PushoverPayload payload);
|
|
}
|