2023-11-10 10:17:36 +01:00
|
|
|
using Umbraco.Cms.Core.Events;
|
|
|
|
|
using Umbraco.Cms.Core.Models;
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Cms.Core.Notifications;
|
|
|
|
|
|
2023-11-21 14:38:47 +01:00
|
|
|
public class WebhookDeletingNotification : DeletingNotification<IWebhook>
|
2023-11-10 10:17:36 +01:00
|
|
|
{
|
2023-11-21 14:38:47 +01:00
|
|
|
public WebhookDeletingNotification(IWebhook target, EventMessages messages)
|
2023-11-10 10:17:36 +01:00
|
|
|
: base(target, messages)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-21 14:38:47 +01:00
|
|
|
public WebhookDeletingNotification(IEnumerable<IWebhook> target, EventMessages messages)
|
2023-11-10 10:17:36 +01:00
|
|
|
: base(target, messages)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|