Files
Umbraco-CMS/src/Umbraco.Infrastructure/Services/Notifications/ContentEmptyingRecycleBinNotification.cs
2021-03-16 06:55:55 +01:00

16 lines
418 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 sealed class ContentEmptyingRecycleBinNotification : EmptyingRecycleBinNotification<IContent>
{
public ContentEmptyingRecycleBinNotification(EventMessages messages) : base(messages)
{
}
}
}