Files
Umbraco-CMS/src/Umbraco.Core/Notifications/WebhookDeletingNotification.cs
Nikolaj Geisle 8755703845 V13: Implement webook as i entity (#15267)
* Add webhook service to service context

* Refactor webhooks to implement IEntity

---------

Co-authored-by: Zeegaan <nge@umbraco.dk>
2023-11-21 14:38:47 +01:00

18 lines
448 B
C#

using Umbraco.Cms.Core.Events;
using Umbraco.Cms.Core.Models;
namespace Umbraco.Cms.Core.Notifications;
public class WebhookDeletingNotification : DeletingNotification<IWebhook>
{
public WebhookDeletingNotification(IWebhook target, EventMessages messages)
: base(target, messages)
{
}
public WebhookDeletingNotification(IEnumerable<IWebhook> target, EventMessages messages)
: base(target, messages)
{
}
}