Files
Umbraco-CMS/src/Umbraco.Core/Notifications/UserDeletedNotification.cs

16 lines
390 B
C#
Raw Normal View History

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