SPMS_API/SPMS.Application/Interfaces/IWebhookService.cs
2026-02-11 10:10:11 +09:00

9 lines
176 B
C#

using SPMS.Domain.Enums;
namespace SPMS.Application.Interfaces;
public interface IWebhookService
{
Task SendAsync(long serviceId, WebhookEvent eventType, object data);
}