Files
Umbraco-CMS/src/Umbraco.Core/Notifications/WebhookDeletedNotification .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

13 lines
306 B
C#

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