feat: notify telegram on new inquiries
TaxBaik CI/CD / build-and-deploy (push) Successful in 1m33s
TaxBaik Browser E2E / browser-e2e (push) Successful in 2m8s

This commit is contained in:
2026-06-27 15:58:42 +09:00
parent 3e8cfc386c
commit f54cab5562
8 changed files with 102 additions and 4 deletions
@@ -0,0 +1,6 @@
namespace TaxBaik.Application.Services;
public interface IInquiryNotificationService
{
Task NotifyCreatedAsync(int inquiryId, string name, string phone, string serviceType, string message, CancellationToken ct = default);
}