Files
2026-02-12 18:17:09 +02:00

9 lines
238 B
C#

using Cleanuparr.Persistence.Models.Configuration.Notification;
namespace Cleanuparr.Infrastructure.Features.Notifications.Gotify;
public interface IGotifyProxy
{
Task SendNotification(GotifyPayload payload, GotifyConfig config);
}