Files
Umbraco-CMS/src/Umbraco.Infrastructure/Services/Notifications/TemplateDeletedNotification.cs
2021-03-30 10:01:42 +02:00

16 lines
407 B
C#

// Copyright (c) Umbraco.
// See LICENSE for more details.
using Umbraco.Cms.Core.Events;
using Umbraco.Cms.Core.Models;
namespace Umbraco.Cms.Infrastructure.Services.Notifications
{
public class TemplateDeletedNotification : DeletedNotification<ITemplate>
{
public TemplateDeletedNotification(ITemplate target, EventMessages messages) : base(target, messages)
{
}
}
}