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

21 lines
613 B
C#

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