Files
managing-apps/src/Managing.Application.Abstractions/Services/IWebhookService.cs
2025-06-09 22:32:36 +07:00

9 lines
279 B
C#

using Managing.Domain.Users;
namespace Managing.Application.Abstractions.Services;
public interface IWebhookService
{
Task SendTradeNotification(User user, string message, bool isBadBehavior = false);
Task SendMessage(string message, string? telegramChannel = null);
}