9 lines
279 B
C#
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);
|
|
} |