DocSpace-buildtools/common/ASC.Webhooks.Core/IWebhookPublisher.cs

12 lines
188 B
C#
Raw Normal View History

2021-10-19 16:53:28 +00:00

2021-09-03 14:02:52 +00:00
using ASC.Common;
2021-08-26 18:43:41 +00:00
namespace ASC.Webhooks.Core
2021-08-19 09:11:26 +00:00
{
[Scope]
public interface IWebhookPublisher
{
2021-09-03 14:02:52 +00:00
public void Publish(string eventName, string requestPayload);
2021-08-19 09:11:26 +00:00
}
}