mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-02-19 23:38:01 -05:00
9 lines
238 B
C#
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);
|
|
}
|