2021-03-16 09:21:27 +01:00
|
|
|
// Copyright (c) Umbraco.
|
|
|
|
|
// See LICENSE for more details.
|
|
|
|
|
|
|
|
|
|
using Umbraco.Cms.Core.Events;
|
|
|
|
|
using Umbraco.Cms.Core.Models.Membership;
|
|
|
|
|
|
2021-05-11 14:33:49 +02:00
|
|
|
namespace Umbraco.Cms.Core.Notifications
|
2021-03-16 09:21:27 +01:00
|
|
|
{
|
|
|
|
|
public sealed class UserDeletedNotification : DeletedNotification<IUser>
|
|
|
|
|
{
|
|
|
|
|
public UserDeletedNotification(IUser target, EventMessages messages) : base(target, messages)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|