Add webhook

This commit is contained in:
2025-06-09 01:04:02 +07:00
parent 8836c45c9d
commit 1f2780d52a
15 changed files with 195 additions and 19 deletions

View File

@@ -0,0 +1,8 @@
using Managing.Domain.Users;
namespace Managing.Application.Abstractions.Services;
public interface IWebhookService
{
Task SendTradeNotification(User user, string message, bool isBadBehavior = false);
}