13 lines
359 B
C#
13 lines
359 B
C#
using Umbraco.Cms.Core.Events;
|
|
using Umbraco.Cms.Core.Models;
|
|
|
|
namespace Umbraco.Cms.Infrastructure.Services.Notifications
|
|
{
|
|
public class MemberGroupDeletedNotification : DeletedNotification<IMemberGroup>
|
|
{
|
|
public MemberGroupDeletedNotification(IMemberGroup target, EventMessages messages) : base(target, messages)
|
|
{
|
|
}
|
|
}
|
|
}
|