9 lines
176 B
C#
9 lines
176 B
C#
using SPMS.Domain.Enums;
|
|
|
|
namespace SPMS.Application.Interfaces;
|
|
|
|
public interface IWebhookService
|
|
{
|
|
Task SendAsync(long serviceId, WebhookEvent eventType, object data);
|
|
}
|