Files
Umbraco-CMS/src/Umbraco.Infrastructure/Services/Notifications/UserGroupDeletedNotification.cs

16 lines
429 B
C#

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