mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-02-20 07:46:34 -05:00
7 lines
175 B
C#
7 lines
175 B
C#
namespace Cleanuparr.Infrastructure.Features.Notifications.Telegram;
|
|
|
|
public interface ITelegramProxy
|
|
{
|
|
Task SendNotification(TelegramPayload payload, string botToken);
|
|
}
|